Skip to content

Release 9.0.0 - #41490

Open
rocketchat-github-ci wants to merge 209 commits into
masterfrom
release-9.0.0
Open

Release 9.0.0#41490
rocketchat-github-ci wants to merge 209 commits into
masterfrom
release-9.0.0

Conversation

@rocketchat-github-ci

@rocketchat-github-ci rocketchat-github-ci commented Jul 20, 2026

Copy link
Copy Markdown
Collaborator

You can see below a preview of the release change log:

9.0.0

Engine versions

  • Node: 22.22.3
  • Deno: 2.3.1
  • MongoDB: 8.0
  • Apps-Engine: 1.64.1-rc.0

Major Changes

  • (#40721) ## Phishing-Resistant Multi-Factor Authentication

    Introduces a more secure and reliable server-side OAuth authentication flow.

    What’s New

    • Improved OAuth login security
      OAuth authentication now happens fully on the server, reducing the risk of token theft, phishing attacks, and client-side credential interception.
    • Built-in CSRF, state validation, and PKCE protection
      OAuth logins now include stronger protection against CSRF attacks, request tampering, and authorization code interception through secure state validation and PKCE support.
    • Improved two-step verification with OAuth logins
      Users with email or TOTP two-factor authentication enabled will now be asked to complete 2FA even when signing in with providers like Google, GitHub, GitLab, and others.
    • Improved mobile & desktop app login
      Mobile and desktop apps now support a smoother and more secure deep-link OAuth login flow.
    • A new setting to enable/disable new OAuth Flow
      Enable this new setting Accounts_OAuth_Use_Modern_Flow to use all of the above mentioned features.

Minor Changes

  • (#40351) Adds current field to DeviceManagementSession type and currentLoginToken parameter to aggregateSessionsByUserId, allowing the sessions endpoint to identify and flag the caller's active session.

  • (#40890) Adds AI Search with semantic message results, optional OpenAI-compatible answers, and AI Center configuration.

  • (#39324) Adds support for running Rocket.Chat in FIPS mode. The monolith and all microservices (ddp-streamer, account-service, authorization-service, presence-service, queue-worker, omnichannel-transcript) can now enforce FIPS-compliant cryptography via Node.js/OpenSSL FIPS, with dedicated FIPS Docker images. Running in FIPS mode requires a license including the new fips module, and FIPS status is now reported in server logs and statistics.

  • (#40721) ## Phishing-Resistant Multi-Factor Authentication

    Introduces a more secure and reliable server-side OAuth authentication flow.

    What’s New

    • Improved OAuth login security
      OAuth authentication now happens fully on the server, reducing the risk of token theft, phishing attacks, and client-side credential interception.
    • Built-in CSRF, state validation, and PKCE protection
      OAuth logins now include stronger protection against CSRF attacks, request tampering, and authorization code interception through secure state validation and PKCE support.
    • Improved two-step verification with OAuth logins
      Users with email or TOTP two-factor authentication enabled will now be asked to complete 2FA even when signing in with providers like Google, GitHub, GitLab, and others.
    • Improved mobile & desktop app login
      Mobile and desktop apps now support a smoother and more secure deep-link OAuth login flow.
  • (#41019) Adds an alternative runtime runner for apps. It can be enabled via environment variable APPS_ENGINE_RUNTIME_BACKEND='node'

  • (#41142) Adds inline JSON validation feedback to admin settings that hold JSON (code: application/json), showing an error in the editor and blocking save while the value is malformed

  • (#40916) Adds a new licenses.validate REST endpoint that validates a Rocket.Chat license (V2 or V3 JWT) against the current workspace without applying it, so a license can be previewed before it is applied from the UI. A valid license responds with success; an invalid one responds with the validation behaviors that rejected it.

  • (#39411) Replaces proprietary emojis with native (unicode) emojis and increases available emoji set

  • (#41148) Adds support for the offline license flag, suppressing every outbound connection to Rocket.Chat Cloud services and the Push Gateway at its source, so air-gapped workspaces never initiate calls that would violate their security compliance.

  • (#41120) Added a persistent audio player. Playing an audio attachment now continues across room navigation: the audio keeps playing when you switch or close the conversation, and a "Now playing" card appears at the top of the sidebar with play/pause, seek, playback speed (1x/1.5x/2x), and a shortcut back to the originating conversation.

  • (#40728) Deprecates the logoutCleanUp DDP method and stops the client from calling it. The post-logout side effects (afterLogoutCleanUpCallback + Apps.IPostUserLoggedOut) now run server-side via a new Accounts.onLogout handler and from POST /v1/users.logout, so both DDP and REST logout paths fire them without a client round-trip. The DDP method keeps its original implementation and registration with a deprecation log pointing at /v1/users.logout until 9.0.0.

  • (#40728) Added POST /v1/cloud.connectWorkspace (replaces the deprecated cloud:connectWorkspace DDP method). Body is { token }; auth-gated with manage-cloud permission. The legacy DDP method remains registered with a deprecation log pointing at the new route.

  • (#40728) Added POST /v1/integrations.clearHistory and POST /v1/integrations.replayOutgoing (replace the deprecated clearIntegrationHistory and replayOutgoingIntegration DDP methods). Bodies { integrationId } and { integrationId, historyId } respectively. Permissions (manage-outgoing-integrations or manage-own-outgoing-integrations) are enforced the same way the DDP methods did. Legacy DDP methods remain registered with deprecation logs pointing at the new routes.

  • (#40728) Added POST /v1/permissions.addRole and POST /v1/permissions.removeRole (replace the deprecated authorization:addPermissionToRole and authorization:removeRoleFromPermission DDP methods). Body is { permissionId, role } on both. The same per-user permission checks (access-permissions, access-setting-permissions) the DDP methods enforced are reused. Legacy DDP methods remain registered with deprecation logs pointing at the new routes.

  • (#40728) Extended POST /v1/users.setAvatar to accept an optional service multipart field. When provided, the value is stored as the user's avatarOrigin, matching what the deprecated setAvatarFromService DDP method did. The legacy DDP method remains registered with a deprecation log pointing at the new route.

  • (#40728) Added POST /v1/users.verifyEmail (replaces the two-call DDP flow of verifyEmail + afterVerifyEmail). Body is { token }; the server resolves the user, marks the email verified, and runs the anonymous→user role swap in a single request. The deprecated afterVerifyEmail DDP method keeps its registration with a deprecation log pointing at the new route.

  • (#40916) Adds a manage license flow to the subscription admin page, allowing license verification before applying it and an option to remove the license. Note: From this point license management should be made in subscription page instead of the Enterprise settings page.

Patch Changes

  • (#41174) Fixes race conditions in several check-then-write database flows by collapsing them into single atomic operations: CAS login tokens can no longer be consumed by two concurrent logins, revoking a room invite no longer emits duplicate removal notifications, and deleting an integration now enforces the creator-only permission scope in the delete itself

  • (#41152) Fixes own account showing twice in navbar room search when searching by username

  • (#41285) Fixes the Slack importer storing shared files as raw URLs in the message body. Imported file messages now stay hidden until "Download Pending Files" button fetches them, then display as native attachments with image previews. Failed downloads (e.g. invalidated export links) are no longer silently saved as the file's content — they are counted as errors and can be retried.

  • (#41056) Added a setUserRoles bridge method to the desktop API and pushed the logged-in user's roles to the desktop app. This lets the desktop client restrict supportedVersions messages (such as version-expiration warnings) to specific roles like admins, instead of showing them to every user. The push is reactive to role changes; desktop builds without the bridge method fall back to their own role lookup.

  • (#41207) Fixes engagement dashboard loading unnecessary data into memory on startup

  • (#41173) Fixes the password policy allowing a maximum length lower than the minimum length to be saved — a combination that made it impossible to set any valid password. The server now rejects such configurations when password policy settings are saved and shows an error explaining the constraint.

  • (#41233) Security Hotfix (https://docs.rocket.chat/docs/security-fixes-and-updates)

  • (#41195) fix: Buttons from emoji picker misbehaving on clicks

    An infinite render loop was preventing proper behavior when clicking on the emoji picker buttons. It was fixed by removing the unnecessary state update that was causing the loop and replacing multiple fires of the same mouseover event (when a mouseenter event was the right one to use). There is a chance this pre-existing bug was hidden by React 18's event delegation.

  • (#41158) Fixes agents' business-hour availability not being updated when they are removed from a department linked to a business hour while multiple business hours are enabled. The recomputation step always failed, leaving removed agents available (or unavailable) according to a business hour that no longer applied to them — and, on deployments running with EXIT_UNHANDLEDPROMISEREJECTION (or in development/test mode), the unhandled rejection crashed the server process.

  • (#41164) Fixes multiple business hours losing their linked departments after a daylight saving time change or a server restart. The automatic timezone adjustment re-saved business hours without their department associations, causing business hours configured with timezones to silently stop applying to agents.

    Also fixes agents keeping a business hour's availability after their department was removed from it: saving a business hour with a smaller department list unlinked the departments but never cleared the business hour from the removed departments' agents.

  • (#41472) Fixes the license provided via the ROCKETCHAT_LICENSE environment variable not being applied when it is newer than the one persisted in the workspace.

  • (#40351) Fixes error message being shown when logging out current device via Device Management despite successful logout.

  • (#41169) Fixes a race condition that left messages permanently undecryptable ("incorrect encryption key") in rooms created with encryption enabled. When several members opened such a room at the same time, each client could independently generate and distribute a different group key. Establishing the room key is now atomic (first-write-wins) on the server, and a client that loses the race discards its locally generated key and adopts the established one instead of encrypting with a divergent key.

  • (#41069) Security Hotfix (https://docs.rocket.chat/docs/security-fixes-and-updates)

  • (#41168) Fixes LDAP channel sync aborting the entire add/removal pass when a mapped channel could not be resolved, which prevented users from being removed from channels when "Auto Remove Users from Channels" was enabled.

  • (#41279) Fixes LDAP sync failing to merge an existing user matched by email, which caused a Username already exists error when the user's username differed from the directory.

  • (#41373) Fixes the server crashing during LDAP login or sync when the configured search settings produce an invalid LDAP filter (for example, an empty User Search Field). The operation now fails gracefully with a logged error instead of terminating the process.

  • (#41202) Disables more actions on message composer during public channel preview.

  • (#41480) Fixes an issue where the "user left" system message could be added to an Omnichannel conversation only after the forwarding process had already finished, causing it to appear out of order in the conversation history

  • (#41110) Passes the original message text to the message renderer so blocks without a dedicated renderer (e.g. tables on clients that don't render them yet) can degrade to their raw markup via the parser's fallback source offsets, instead of disappearing.

  • (#41074) Fixes an issue where the cursor jumped to the wrong position after inserting a mention at the start or middle of a message.

  • (#41304) Fixes wrong FederationLookup type assigned to IUser in apps. The correct data is there, but the type does not represent it.

  • (#41089) Enables keyboard activation for Display menu radio buttons and checkboxes

  • (#41204) Changes the date columns in the Omnichannel Contact Center to show both the formatted date and the relative time: the Last Chat column in the contacts list, and the Started at and Last Message columns in the chats list

  • (#41341) Fixes a server crash when re-enabling the "Enable Push" setting after it was disabled. Push notifications are now fully reconfigured on re-enable, so settings changed while push was disabled are picked up as well.

  • (#40768) Ensures the users.CreateToken endpoint checks for the user-generate-access-token permission when generating a login token for another user

  • (#41206) Ensures room permission checks are applied consistently regardless of how the room is identified when converting a channel to a team or creating a team from an existing room

  • (#41414) Restores Away as a selectable preset in the quick status menu, custom status modal, and account profile page.

  • (#41145) Fixes the SAML Single Logout response so the RelayState matches the exact value received on the logout request, as required by the SAML specification, instead of using Rocket.Chat's own URL

  • (#41254) Fixes the setup wizard being forced back into the registration step on the first start after an upgrade when OVERWRITE_SETTING_Show_Setup_Wizard=completed is set, which affected air-gapped workspaces running offline licenses without cloud registration.

  • (#41122) Adds keyboard navigation support in Room members list

  • (#41112) Returns custom fields on admin rooms detail view

  • (#41101) Improved /v1/spotlight search performance: results return faster, and room searches now read from secondary database replicas when available, reducing load on the primary.

  • (#41402) Fixes broken pagination on rooms.bannedUsers and on omnichannel department listing endpoints, which ignored the offset parameter and always returned results from the first page. Also reduces payload over-fetching on several endpoints that unintentionally loaded full documents (rooms.hide, private group lookups, direct email replies, omnichannel auto-transfer), and removes the permissive model query typings that allowed these invalid find options to compile unnoticed.

  • (#41229) Fixes dates showing one day earlier for users in negative UTC-offset timezones

  • (#41200) Fixes an issue where the whole app remounts when VoIP availability changes

  • Updated dependencies [c7aff48, 5f92f9a, 70c0ff0, 13b4a7b, eec6083, 4b34bd6, adc1570, 1bf84cb, 4b57346, 8d8cd01, 297df1a, 6ebabce, 13b4a7b, ffe1b64, 784c287, 3cd7db6, 115dfe8, 719e3db, b2b5edf, 74d6cac, 4186deb, 4117a1d, 376c9d8, 73c3aec, 73c3aec, 73c3aec, 73c3aec, 615ae2b, b2b5edf, 1cc7bbd, 6041285, e5da5d0, 2ec4d29, 70c0ff0, 1637a8b]:
    • @rocket.chat/model-typings@3.0.0-rc.0
    • @rocket.chat/core-typings@9.0.0-rc.0
    • @rocket.chat/models@3.0.0-rc.0
    • @rocket.chat/gazzodown@33.0.0-rc.0
    • @rocket.chat/web-ui-registration@33.0.0-rc.0
    • @rocket.chat/rest-typings@9.0.0-rc.0
    • @rocket.chat/passport-x@1.0.0-rc.0
    • @rocket.chat/i18n@4.0.0-rc.0
    • @rocket.chat/message-parser@0.32.0-rc.0
    • @rocket.chat/core-services@0.15.0-rc.0
    • @rocket.chat/ai-search@0.2.0-rc.0
    • @rocket.chat/ui-client@33.0.0-rc.0
    • @rocket.chat/federation-matrix@0.2.0-rc.0
    • @rocket.chat/apps@0.8.0-rc.0
    • @rocket.chat/license@1.2.0-rc.0
    • @rocket.chat/apps-engine@1.64.1-rc.0
    • @rocket.chat/ui-voip@23.0.0-rc.0
    • @rocket.chat/omnichannel-services@0.3.56-rc.0
    • @rocket.chat/abac@0.3.1-rc.0
    • @rocket.chat/media-calls@0.5.2-rc.0
    • @rocket.chat/pdf-worker@0.3.36-rc.0
    • @rocket.chat/presence@0.3.1-rc.0
    • @rocket.chat/api-client@0.2.57-rc.0
    • @rocket.chat/cron@0.1.59-rc.0
    • @rocket.chat/ddp-client@1.1.2-rc.0
    • @rocket.chat/fuselage-ui-kit@33.0.0-rc.0
    • @rocket.chat/http-router@7.9.24-rc.0
    • @rocket.chat/message-types@0.1.1
    • @rocket.chat/ui-avatar@29.0.0-rc.0
    • @rocket.chat/ui-contexts@33.0.0-rc.0
    • @rocket.chat/omni-core-ee@0.0.24-rc.0
    • @rocket.chat/instance-status@0.1.59-rc.0
    • @rocket.chat/omni-core@0.1.3-rc.0
    • @rocket.chat/server-fetch@0.2.3-rc.0
    • @rocket.chat/network-broker@0.2.38-rc.0
    • @rocket.chat/ui-composer@4.0.0-rc.0
    • @rocket.chat/server-cloud-communication@0.0.3
    • @rocket.chat/ui-video-conf@33.0.0-rc.0

Review in cubic

gabriellsh and others added 30 commits June 22, 2026 13:51
…m MediaCallRoomSection (#41043)

Co-authored-by: Guilherme Gazzo <guilherme@gazzo.xyz>
)

Co-authored-by: dougfabris <devfabris@gmail.com>
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Nazareno Bucciarelli <84046180+nazabucciarelli@users.noreply.github.com>
Co-authored-by: Julio Araujo <julio.araujo@rocket.chat>
Co-authored-by: Nazareno Bucciarelli <bnazareno03@gmail.com>
@rocketchat-github-ci
rocketchat-github-ci requested review from a team as code owners July 20, 2026 21:54
@hacktron-app

hacktron-app Bot commented Jul 20, 2026

Copy link
Copy Markdown

Hacktron Security Check - Skipped

Reason: This PR exceeds Hacktron's 200-file review cap and will not be scanned. Split the PR into smaller changes for review coverage.

Split the PR into smaller commits or open separate PRs for unrelated changes.

@changeset-bot

changeset-bot Bot commented Jul 20, 2026

Copy link
Copy Markdown

🦋 Changeset detected

Latest commit: 7621bfc

The changes in this PR will be included in the next version bump.

This PR includes changesets to release 43 packages
Name Type
@rocket.chat/model-typings Major
@rocket.chat/core-typings Major
@rocket.chat/models Major
@rocket.chat/meteor Major
@rocket.chat/gazzodown Major
@rocket.chat/web-ui-registration Major
@rocket.chat/rest-typings Major
@rocket.chat/passport-x Major
@rocket.chat/i18n Major
@rocket.chat/message-parser Patch
@rocket.chat/desktop-api Minor
@rocket.chat/core-services Minor
@rocket.chat/ai-search Minor
@rocket.chat/ui-client Major
@rocket.chat/federation-matrix Minor
@rocket.chat/account-service Minor
@rocket.chat/authorization-service Minor
@rocket.chat/ddp-streamer Minor
@rocket.chat/omnichannel-transcript Minor
@rocket.chat/presence-service Minor
@rocket.chat/queue-worker Minor
@rocket.chat/apps Minor
@rocket.chat/license Patch
@rocket.chat/omnichannel-services Patch
rocketchat-services Patch
@rocket.chat/cron Patch
@rocket.chat/instance-status Patch
@rocket.chat/omni-core Patch
@rocket.chat/server-fetch Patch
@rocket.chat/abac Patch
@rocket.chat/media-calls Patch
@rocket.chat/omni-core-ee Patch
@rocket.chat/presence Patch
@rocket.chat/mock-providers Patch
@rocket.chat/ui-contexts Major
@rocket.chat/network-broker Patch
@rocket.chat/ui-composer Major
@rocket.chat/uikit-playground Patch
@rocket.chat/fuselage-ui-kit Major
@rocket.chat/livechat Patch
@rocket.chat/ui-avatar Major
@rocket.chat/ui-video-conf Major
@rocket.chat/ui-voip Major

Not sure what this means? Click here to learn what changesets are.

Click here if you're a maintainer who wants to add another changeset to this PR

@dionisio-bot

dionisio-bot Bot commented Jul 20, 2026

Copy link
Copy Markdown
Contributor

Looks like this PR is not ready to merge, because of the following issues:

  • This PR is missing the 'stat: QA assured' label
  • This PR is missing the required milestone or project

Please fix the issues and try again

If you have any trouble, please check the PR guidelines

@coderabbitai

coderabbitai Bot commented Jul 20, 2026

Copy link
Copy Markdown
Contributor

Important

Review skipped

Too many files!

This PR contains 2595 files, which is 2295 over the limit of 300.

To get a review, narrow the scope:
• coderabbit review --committed # exclude uncommitted changes
• coderabbit review --dir # limit to a subdirectory
• coderabbit review --base # compare against a closer base

Usage-priced reviews support at most 300 files.

⚙️ Run configuration

Configuration used: Organization UI

Review profile: CHILL

Plan: Pro

Run ID: e08a66d2-426c-4153-9803-4511cebbcc1c

📥 Commits

Reviewing files that changed from the base of the PR and between bfd7823 and 7621bfc.

⛔ Files ignored due to path filters (45)
  • .github/actions/update-version-durability/package-lock.json is excluded by !**/package-lock.json
  • .yarn/patches/@react-pdf-layout-npm-4.4.2-6c2e3312fa.patch is excluded by !**/.yarn/**
  • .yarn/patches/@react-pdf-layout-npm-4.6.1-b12fdb71f4.patch is excluded by !**/.yarn/**
  • .yarn/patches/file-type-npm-16.5.4-d653e66a40.patch is excluded by !**/.yarn/**
  • .yarn/patches/react-aria-npm-3.37.0-83959bd2fa.patch is excluded by !**/.yarn/**
  • .yarn/patches/react-stately-npm-3.17.0-264cc7a43c.patch is excluded by !**/.yarn/**
  • .yarn/patches/react-stately-npm-3.35.0-f77b012b54.patch is excluded by !**/.yarn/**
  • apps/meteor/client/components/ABAC/ABACUpsellModal/__snapshots__/ABACUpsellModal.spec.tsx.snap is excluded by !**/*.snap
  • apps/meteor/client/components/CreateDiscussion/__snapshots__/CreateDiscussion.spec.tsx.snap is excluded by !**/*.snap
  • apps/meteor/client/components/GenericUpsellModal/__snapshots__/GenericUpsellModal.spec.tsx.snap is excluded by !**/*.snap
  • apps/meteor/client/components/UserInfo/__snapshots__/UserInfo.spec.tsx.snap is excluded by !**/*.snap
  • apps/meteor/client/components/message/toolbar/items/actions/Timestamp/TimestampPicker/__snapshots__/TimestampPicker.spec.tsx.snap is excluded by !**/*.snap
  • apps/meteor/client/views/admin/ABAC/ABACAttributesTab/__snapshots__/AttributesForm.spec.tsx.snap is excluded by !**/*.snap
  • apps/meteor/client/views/admin/ABAC/ABACRoomsTab/__snapshots__/DeleteRoomModal.spec.tsx.snap is excluded by !**/*.snap
  • apps/meteor/client/views/admin/permissions/PermissionsTable/__snapshots__/PermissionsTable.spec.tsx.snap is excluded by !**/*.snap
  • apps/meteor/client/views/admin/permissions/UsersInRole/UsersInRoleTable/__snapshots__/UsersInRoleTable.spec.tsx.snap is excluded by !**/*.snap
  • apps/meteor/client/views/admin/settings/Setting/inputs/__snapshots__/RangeSettingInput.spec.tsx.snap is excluded by !**/*.snap
  • apps/meteor/client/views/admin/subscription/components/cards/PlanCard/ManageLicenseModal/__snapshots__/ManageLicenseModal.spec.tsx.snap is excluded by !**/*.snap
  • apps/meteor/client/views/admin/users/UsersTable/__snapshots__/UsersTable.spec.tsx.snap is excluded by !**/*.snap
  • apps/meteor/client/views/audit/components/__snapshots__/SecurityLogDisplayModal.spec.tsx.snap is excluded by !**/*.snap
  • apps/meteor/client/views/e2e/EnterE2EPasswordModal/__snapshots__/EnterE2EPasswordModal.spec.tsx.snap is excluded by !**/*.snap
  • apps/meteor/client/views/marketplace/AppDetailsPage/tabs/AppLogs/Filters/__snapshots__/AppLogsFilterCompact.spec.tsx.snap is excluded by !**/*.snap
  • apps/meteor/client/views/marketplace/AppDetailsPage/tabs/AppLogs/Filters/__snapshots__/AppLogsFilterContextualBar.spec.tsx.snap is excluded by !**/*.snap
  • apps/meteor/client/views/marketplace/AppDetailsPage/tabs/AppLogs/Filters/__snapshots__/AppLogsFilterExpanded.spec.tsx.snap is excluded by !**/*.snap
  • apps/meteor/client/views/marketplace/AppDetailsPage/tabs/AppLogs/Filters/__snapshots__/DateTimeModal.spec.tsx.snap is excluded by !**/*.snap
  • apps/meteor/client/views/omnichannel/cannedResponses/contextualBar/CannedResponse/__snapshots__/CannedResponseList.spec.tsx.snap is excluded by !**/*.snap
  • apps/meteor/client/views/omnichannel/modals/__snapshots__/ForwardChatModal.spec.tsx.snap is excluded by !**/*.snap
  • apps/meteor/client/views/omnichannel/modals/__snapshots__/ReturnChatQueueModal.spec.tsx.snap is excluded by !**/*.snap
  • apps/meteor/client/views/room/contextualBar/BannedUsers/__snapshots__/BannedUsers.spec.tsx.snap is excluded by !**/*.snap
  • apps/meteor/client/views/room/contextualBar/Discussions/__snapshots__/DiscussionsList.spec.tsx.snap is excluded by !**/*.snap
  • apps/meteor/client/views/room/contextualBar/RoomFiles/__snapshots__/RoomFiles.spec.tsx.snap is excluded by !**/*.snap
  • apps/meteor/client/views/room/contextualBar/RoomMembers/InviteUsers/__snapshots__/InviteUsers.spec.tsx.snap is excluded by !**/*.snap
  • apps/meteor/client/views/room/contextualBar/RoomMembers/__snapshots__/RoomMembers.spec.tsx.snap is excluded by !**/*.snap
  • apps/meteor/client/views/room/modals/FileUploadModal/__snapshots__/FileUploadModal.spec.tsx.snap is excluded by !**/*.snap
  • apps/meteor/client/views/room/modals/ReadReceiptsModal/__snapshots__/ReadReceiptsModal.spec.tsx.snap is excluded by !**/*.snap
  • apps/meteor/public/packages/emojione/activity-sprites.png is excluded by !**/*.png
  • apps/meteor/public/packages/emojione/flags-sprites.png is excluded by !**/*.png
  • apps/meteor/public/packages/emojione/food-sprites.png is excluded by !**/*.png
  • apps/meteor/public/packages/emojione/modifier-sprites.png is excluded by !**/*.png
  • apps/meteor/public/packages/emojione/nature-sprites.png is excluded by !**/*.png
  • apps/meteor/public/packages/emojione/objects-sprites.png is excluded by !**/*.png
  • apps/meteor/public/packages/emojione/people-sprites.png is excluded by !**/*.png
  • apps/meteor/public/packages/emojione/regional-sprites.png is excluded by !**/*.png
  • apps/meteor/public/packages/emojione/symbols-sprites.png is excluded by !**/*.png
  • apps/meteor/public/packages/emojione/travel-sprites.png is excluded by !**/*.png
📒 Files selected for processing (2955)
  • .changeset/all-baths-cry.md
  • .changeset/atomic-model-operations.md
  • .changeset/better-results-press.md
  • .changeset/block-fallback-rendering.md
  • .changeset/breezy-moons-search.md
  • .changeset/breezy-parts-kiss.md
  • .changeset/code-fence-trailing-backtick.md
  • .changeset/deep-ways-poke.md
  • .changeset/desktop-set-user-roles.md
  • .changeset/emoji-zwj-tag-sequences.md
  • .changeset/empty-boxes-cross.md
  • .changeset/empty-garlics-reply.md
  • .changeset/fancy-days-knock.md
  • .changeset/fancy-deserts-mate.md
  • .changeset/fifty-candies-heal.md
  • .changeset/fips-mode-support.md
  • .changeset/fix-business-hour-agents-availability.md
  • .changeset/fix-business-hour-dst-department-unlink.md
  • .changeset/fix-deno-runtime-symlink.md
  • .changeset/fix-license-env-precedence.md
  • .changeset/flat-poets-cheat.md
  • .changeset/forty-stars-bathe.md
  • .changeset/four-tigers-clap.md
  • .changeset/fruity-items-fix.md
  • .changeset/gentle-cats-change.md
  • .changeset/integration-scripts-no-babel.md
  • .changeset/json-setting-validation-feedback.md
  • .changeset/ldap-channel-sync-removal-abort.md
  • .changeset/ldap-merge-email-lookup.md
  • .changeset/ldap-sync-crash-invalid-filter.md
  • .changeset/license-validate-preview.md
  • .changeset/light-geckos-start.md
  • .changeset/livechat-forward-ul-message.md
  • .changeset/message-content-body-source.md
  • .changeset/moody-eggs-juggle.md
  • .changeset/nice-fans-cover.md
  • .changeset/offline-license-no-egress.md
  • .changeset/old-bats-sniff.md
  • .changeset/olive-nails-fix.md
  • .changeset/omnichannel-contact-center-date-relative-time.md
  • .changeset/parser-horizontal-rule.md
  • .changeset/persistent-audio-player.md
  • .changeset/push-reenable-crash.md
  • .changeset/quiet-lizards-jump.md
  • .changeset/quiet-teams-guard.md
  • .changeset/ready-taxis-join.md
  • .changeset/remove-webdav-integration.md
  • .changeset/rest-batch4-logout-cleanup.md
  • .changeset/rest-cloud-connect-workspace.md
  • .changeset/rest-integrations-history-clear-replay.md
  • .changeset/rest-permissions-add-remove-role.md
  • .changeset/rest-users-setavatar-service.md
  • .changeset/rest-users-verify-email.md
  • .changeset/saml-slo-relaystate.md
  • .changeset/setup-wizard-env-override-upgrade.md
  • .changeset/shaggy-hats-behave.md
  • .changeset/shaggy-pets-return.md
  • .changeset/shy-actors-draw.md
  • .changeset/silver-cars-kneel.md
  • .changeset/spotlight-perf.md
  • .changeset/stale-meals-check.md
  • .changeset/strict-find-options.md
  • .changeset/swift-ants-appear.md
  • .changeset/tame-tables-render.md
  • .changeset/tidy-snails-smile.md
  • .changeset/timestamp-fallback-offsets.md
  • .changeset/voip-provider-app-remount.md
  • .github/CODEOWNERS
  • .github/actions/build-docker/action.yml
  • .github/actions/docker-image-size-tracker/action.yml
  • .github/actions/update-version-durability/package.json
  • .github/workflows/auto-close-duplicates.yml
  • .github/workflows/ci-code-check.yml
  • .github/workflows/ci-deploy-gh-pages.yml
  • .github/workflows/ci-test-e2e.yml
  • .github/workflows/ci-test-storybook.yml
  • .github/workflows/ci-test-unit.yml
  • .github/workflows/ci.yml
  • .github/workflows/codeql-analysis.yml
  • .github/workflows/dedupe-issues.yml
  • .github/workflows/new-release.yml
  • .github/workflows/pr-update-description.yml
  • .github/workflows/publish-release.yml
  • .github/workflows/release-candidate.yml
  • .github/workflows/stale.yml
  • .github/workflows/todo.yml
  • .github/workflows/update-version-durability.yml
  • README.md
  • apps/meteor/.docker/Dockerfile.alpine
  • apps/meteor/.mocharc.api.apps.js
  • apps/meteor/.mocharc.js
  • apps/meteor/.scripts/run-ha.ts
  • apps/meteor/.scripts/version.js
  • apps/meteor/.stylelintignore
  • apps/meteor/app/2fa/server/code/index.ts
  • apps/meteor/app/2fa/server/index.ts
  • apps/meteor/app/2fa/server/loginHandler.ts
  • apps/meteor/app/api/server/api.ts
  • apps/meteor/app/api/server/index.ts
  • apps/meteor/app/api/server/lib/getServerInfo.ts
  • apps/meteor/app/api/server/lib/getTrimmedServerVersion.ts
  • apps/meteor/app/api/server/lib/integrations.ts
  • apps/meteor/app/api/server/lib/messages.ts
  • apps/meteor/app/api/server/lib/rooms.ts
  • apps/meteor/app/api/server/lib/users.ts
  • apps/meteor/app/api/server/lib/webdav.ts
  • apps/meteor/app/api/server/middlewares/cors.ts
  • apps/meteor/app/api/server/middlewares/logger.ts
  • apps/meteor/app/api/server/middlewares/permissions.ts
  • apps/meteor/app/api/server/v1/assets.ts
  • apps/meteor/app/api/server/v1/autotranslate.ts
  • apps/meteor/app/api/server/v1/cloud.ts
  • apps/meteor/app/api/server/v1/integrations.ts
  • apps/meteor/app/api/server/v1/permissions.ts
  • apps/meteor/app/api/server/v1/push.ts
  • apps/meteor/app/api/server/v1/rooms.ts
  • apps/meteor/app/api/server/v1/settings.ts
  • apps/meteor/app/api/server/v1/users.ts
  • apps/meteor/app/api/server/v1/webdav.ts
  • apps/meteor/app/apple/server/index.ts
  • apps/meteor/app/apple/server/loginHandler.spec.ts
  • apps/meteor/app/apple/server/loginHandler.ts
  • apps/meteor/app/apps/server/bridges/api.ts
  • apps/meteor/app/apps/server/bridges/cloud.ts
  • apps/meteor/app/apps/server/bridges/commands.ts
  • apps/meteor/app/apps/server/bridges/contact.ts
  • apps/meteor/app/apps/server/bridges/email.ts
  • apps/meteor/app/apps/server/bridges/http.ts
  • apps/meteor/app/apps/server/bridges/livechat.ts
  • apps/meteor/app/apps/server/bridges/messages.ts
  • apps/meteor/app/apps/server/bridges/outboundCommunication.ts
  • apps/meteor/app/apps/server/bridges/rooms.ts
  • apps/meteor/app/apps/server/bridges/settings.ts
  • apps/meteor/app/apps/server/bridges/uploads.ts
  • apps/meteor/app/apps/server/bridges/users.ts
  • apps/meteor/app/apps/server/converters/codecs/enums.ts
  • apps/meteor/app/apps/server/converters/codecs/index.ts
  • apps/meteor/app/apps/server/converters/departments.js
  • apps/meteor/app/apps/server/converters/departments.ts
  • apps/meteor/app/apps/server/converters/messages.js
  • apps/meteor/app/apps/server/converters/messages.ts
  • apps/meteor/app/apps/server/converters/rooms.js
  • apps/meteor/app/apps/server/converters/rooms.ts
  • apps/meteor/app/apps/server/converters/settings.js
  • apps/meteor/app/apps/server/converters/settings.ts
  • apps/meteor/app/apps/server/converters/uploads.js
  • apps/meteor/app/apps/server/converters/uploads.ts
  • apps/meteor/app/apps/server/converters/users.js
  • apps/meteor/app/apps/server/converters/users.ts
  • apps/meteor/app/apps/server/converters/visitors.js
  • apps/meteor/app/apps/server/converters/visitors.ts
  • apps/meteor/app/assets/server/assets.ts
  • apps/meteor/app/authentication/server/hooks/login.ts
  • apps/meteor/app/authentication/server/index.ts
  • apps/meteor/app/authentication/server/startup/index.js
  • apps/meteor/app/authorization/server/functions/hasPermission.ts
  • apps/meteor/app/authorization/server/index.ts
  • apps/meteor/app/authorization/server/methods/addPermissionToRole.ts
  • apps/meteor/app/authorization/server/methods/removeRoleFromPermission.ts
  • apps/meteor/app/autotranslate/server/autotranslate.ts
  • apps/meteor/app/autotranslate/server/functions/getSupportedLanguages.ts
  • apps/meteor/app/autotranslate/server/functions/saveSettings.ts
  • apps/meteor/app/autotranslate/server/functions/translateMessage.ts
  • apps/meteor/app/autotranslate/server/index.ts
  • apps/meteor/app/autotranslate/server/methods/getSupportedLanguages.ts
  • apps/meteor/app/autotranslate/server/methods/saveSettings.ts
  • apps/meteor/app/autotranslate/server/methods/translateMessage.ts
  • apps/meteor/app/bot-helpers/server/index.ts
  • apps/meteor/app/channel-settings/server/index.ts
  • apps/meteor/app/cloud/server/functions/getOAuthAuthorizationUrl.ts
  • apps/meteor/app/cloud/server/functions/getRedirectUri.ts
  • apps/meteor/app/cloud/server/functions/syncWorkspace/index.ts
  • apps/meteor/app/cloud/server/index.ts
  • apps/meteor/app/cloud/server/methods.ts
  • apps/meteor/app/cors/server/cors.ts
  • apps/meteor/app/cors/server/index.ts
  • apps/meteor/app/crowd/server/crowd.ts
  • apps/meteor/app/crowd/server/index.ts
  • apps/meteor/app/crowd/server/methods.ts
  • apps/meteor/app/custom-oauth/.gitignore
  • apps/meteor/app/custom-sounds/server/index.ts
  • apps/meteor/app/custom-sounds/server/lib/insertOrUpdateSound.ts
  • apps/meteor/app/custom-sounds/server/lib/uploadCustomSound.ts
  • apps/meteor/app/custom-sounds/server/methods/deleteCustomSound.ts
  • apps/meteor/app/custom-sounds/server/methods/insertOrUpdateSound.ts
  • apps/meteor/app/custom-sounds/server/methods/uploadCustomSound.ts
  • apps/meteor/app/discussion/server/index.ts
  • apps/meteor/app/dolphin/server/lib.ts
  • apps/meteor/app/drupal/server/index.ts
  • apps/meteor/app/drupal/server/lib.ts
  • apps/meteor/app/e2e/server/beforeCreateRoom.ts
  • apps/meteor/app/e2e/server/index.ts
  • apps/meteor/app/e2e/server/methods/setRoomKeyID.ts
  • apps/meteor/app/emoji-custom/server/index.ts
  • apps/meteor/app/emoji-custom/server/lib/insertOrUpdateEmoji.ts
  • apps/meteor/app/emoji-custom/server/lib/uploadEmojiCustom.ts
  • apps/meteor/app/emoji-custom/server/methods/insertOrUpdateEmoji.ts
  • apps/meteor/app/emoji-custom/server/methods/uploadEmojiCustom.ts
  • apps/meteor/app/emoji-emojione/.gitignore
  • apps/meteor/app/emoji-emojione/README.md
  • apps/meteor/app/emoji-emojione/client/activity-sprites.css
  • apps/meteor/app/emoji-emojione/client/emojione-sprites.css
  • apps/meteor/app/emoji-emojione/client/flags-sprites.css
  • apps/meteor/app/emoji-emojione/client/food-sprites.css
  • apps/meteor/app/emoji-emojione/client/index.ts
  • apps/meteor/app/emoji-emojione/client/modifier-sprites.css
  • apps/meteor/app/emoji-emojione/client/nature-sprites.css
  • apps/meteor/app/emoji-emojione/client/objects-sprites.css
  • apps/meteor/app/emoji-emojione/client/people-sprites.css
  • apps/meteor/app/emoji-emojione/client/regional-sprites.css
  • apps/meteor/app/emoji-emojione/client/symbols-sprites.css
  • apps/meteor/app/emoji-emojione/client/travel-sprites.css
  • apps/meteor/app/emoji-emojione/lib/emojiPicker.ts
  • apps/meteor/app/emoji-emojione/lib/emojione.tpl
  • apps/meteor/app/emoji-emojione/lib/generateEmojiIndex.mjs
  • apps/meteor/app/emoji-emojione/lib/getEmojiConfig.ts
  • apps/meteor/app/emoji-emojione/lib/isSetNotNull.ts
  • apps/meteor/app/emoji-emojione/server/callbacks.ts
  • apps/meteor/app/emoji-emojione/server/index.ts
  • apps/meteor/app/emoji-emojione/server/lib.ts
  • apps/meteor/app/emoji-native/lib/generateEmojiData.ts
  • apps/meteor/app/emoji-native/lib/getEmojiConfig.ts
  • apps/meteor/app/emoji-native/lib/legacyEmojioneMap.ts
  • apps/meteor/app/emoji-native/lib/shortnameToUnicode.ts
  • apps/meteor/app/emoji/client/emojiParser.ts
  • apps/meteor/app/emoji/client/helpers.ts
  • apps/meteor/app/emoji/client/lib.ts
  • apps/meteor/app/emoji/lib/rocketchat.ts
  • apps/meteor/app/emoji/server/index.ts
  • apps/meteor/app/emoji/server/lib.ts
  • apps/meteor/app/error-handler/server/index.ts
  • apps/meteor/app/file-upload/server/config/Webdav.ts
  • apps/meteor/app/file-upload/server/index.ts
  • apps/meteor/app/file-upload/server/lib/FileUpload.spec.ts
  • apps/meteor/app/file-upload/ufs/AmazonS3/server.ts
  • apps/meteor/app/file-upload/ufs/GoogleStorage/server.ts
  • apps/meteor/app/file-upload/ufs/Webdav/server.ts
  • apps/meteor/app/github-enterprise/server/index.ts
  • apps/meteor/app/github-enterprise/server/lib.ts
  • apps/meteor/app/github/server/index.ts
  • apps/meteor/app/github/server/lib.ts
  • apps/meteor/app/gitlab/server/index.ts
  • apps/meteor/app/gitlab/server/lib.ts
  • apps/meteor/app/iframe-login/server/index.ts
  • apps/meteor/app/importer-csv/server/index.ts
  • apps/meteor/app/importer-omnichannel-contacts/server/index.ts
  • apps/meteor/app/importer-pending-avatars/server/index.ts
  • apps/meteor/app/importer-pending-files/server/PendingFileImporter.ts
  • apps/meteor/app/importer-pending-files/server/index.ts
  • apps/meteor/app/importer-slack-users/server/index.ts
  • apps/meteor/app/importer-slack/server/index.ts
  • apps/meteor/app/importer/server/index.ts
  • apps/meteor/app/importer/server/methods/index.ts
  • apps/meteor/app/integrations/server/api/api.ts
  • apps/meteor/app/integrations/server/index.ts
  • apps/meteor/app/integrations/server/methods/clearIntegrationHistory.ts
  • apps/meteor/app/integrations/server/methods/incoming/deleteIncomingIntegration.ts
  • apps/meteor/app/integrations/server/methods/outgoing/deleteOutgoingIntegration.ts
  • apps/meteor/app/integrations/server/methods/outgoing/replayOutgoingIntegration.ts
  • apps/meteor/app/integrations/server/triggers.ts
  • apps/meteor/app/invites/server/functions/removeInvite.ts
  • apps/meteor/app/irc/server/irc-bridge/index.js
  • apps/meteor/app/lib/server/functions/addUserToRoom.ts
  • apps/meteor/app/lib/server/functions/archiveRoom.ts
  • apps/meteor/app/lib/server/functions/blockUser.ts
  • apps/meteor/app/lib/server/functions/cleanRoomHistory.ts
  • apps/meteor/app/lib/server/functions/deleteUser.ts
  • apps/meteor/app/lib/server/functions/getUsernameSuggestion.ts
  • apps/meteor/app/lib/server/functions/isTheLastMessage.ts
  • apps/meteor/app/lib/server/functions/notifications/index.ts
  • apps/meteor/app/lib/server/functions/removeUserFromRoom.ts
  • apps/meteor/app/lib/server/functions/sendMessage.ts
  • apps/meteor/app/lib/server/functions/setEmail.ts
  • apps/meteor/app/lib/server/functions/setRealName.ts
  • apps/meteor/app/lib/server/functions/setUserActiveStatus.ts
  • apps/meteor/app/lib/server/functions/unarchiveRoom.ts
  • apps/meteor/app/lib/server/functions/unblockUser.ts
  • apps/meteor/app/lib/server/functions/updateMessage.ts
  • apps/meteor/app/lib/server/index.ts
  • apps/meteor/app/lib/server/lib/afterSaveMessage.ts
  • apps/meteor/app/lib/server/lib/afterUserActions.ts
  • apps/meteor/app/lib/server/lib/index.ts
  • apps/meteor/app/lib/server/lib/msgStream.ts
  • apps/meteor/app/lib/server/methods/addUserToRoom.ts
  • apps/meteor/app/lib/server/methods/archiveRoom.ts
  • apps/meteor/app/lib/server/methods/blockUser.ts
  • apps/meteor/app/lib/server/methods/cleanRoomHistory.ts
  • apps/meteor/app/lib/server/methods/createToken.ts
  • apps/meteor/app/lib/server/methods/getUsernameSuggestion.ts
  • apps/meteor/app/lib/server/methods/saveSettings.ts
  • apps/meteor/app/lib/server/methods/sendMessage.ts
  • apps/meteor/app/lib/server/methods/setEmail.ts
  • apps/meteor/app/lib/server/methods/setRealName.ts
  • apps/meteor/app/lib/server/methods/unarchiveRoom.ts
  • apps/meteor/app/lib/server/methods/unblockUser.ts
  • apps/meteor/app/lib/server/methods/updateMessage.ts
  • apps/meteor/app/lib/server/startup/index.ts
  • apps/meteor/app/livechat-enterprise/client/components/modals/PlaceChatOnHoldModal.tsx
  • apps/meteor/app/livechat/imports/server/rest/agent.ts
  • apps/meteor/app/livechat/imports/server/rest/businessHours.ts
  • apps/meteor/app/livechat/imports/server/rest/dashboards.ts
  • apps/meteor/app/livechat/imports/server/rest/departments.ts
  • apps/meteor/app/livechat/imports/server/rest/inquiries.ts
  • apps/meteor/app/livechat/imports/server/rest/integrations.ts
  • apps/meteor/app/livechat/imports/server/rest/rooms.ts
  • apps/meteor/app/livechat/imports/server/rest/triggers.ts
  • apps/meteor/app/livechat/imports/server/rest/users.ts
  • apps/meteor/app/livechat/imports/server/rest/visitors.ts
  • apps/meteor/app/livechat/lib/stream/constants.ts
  • apps/meteor/app/livechat/server/api.ts
  • apps/meteor/app/livechat/server/api/lib/businessHours.ts
  • apps/meteor/app/livechat/server/api/lib/departments.ts
  • apps/meteor/app/livechat/server/api/lib/inquiries.ts
  • apps/meteor/app/livechat/server/api/lib/livechat.ts
  • apps/meteor/app/livechat/server/api/lib/rooms.ts
  • apps/meteor/app/livechat/server/api/lib/transfer.ts
  • apps/meteor/app/livechat/server/api/lib/triggers.ts
  • apps/meteor/app/livechat/server/api/lib/visitors.ts
  • apps/meteor/app/livechat/server/api/rest.ts
  • apps/meteor/app/livechat/server/api/v1/agent.ts
  • apps/meteor/app/livechat/server/api/v1/offlineMessage.ts
  • apps/meteor/app/livechat/server/api/v1/room.ts
  • apps/meteor/app/livechat/server/api/v1/statistics.ts
  • apps/meteor/app/livechat/server/api/v1/transcript.ts
  • apps/meteor/app/livechat/server/api/v1/transfer.ts
  • apps/meteor/app/livechat/server/api/v1/webhooks.ts
  • apps/meteor/app/livechat/server/business-hour/Helper.ts
  • apps/meteor/app/livechat/server/business-hour/index.ts
  • apps/meteor/app/livechat/server/hooks/afterUserActions.ts
  • apps/meteor/app/livechat/server/hooks/offlineMessage.ts
  • apps/meteor/app/livechat/server/index.ts
  • apps/meteor/app/livechat/server/lib/Helper.ts
  • apps/meteor/app/livechat/server/lib/analytics/dashboards.ts
  • apps/meteor/app/livechat/server/lib/analytics/departments.ts
  • apps/meteor/app/livechat/server/lib/messages.ts
  • apps/meteor/app/livechat/server/lib/rooms.ts
  • apps/meteor/app/livechat/server/lib/settings.ts
  • apps/meteor/app/livechat/server/lib/transfer.ts
  • apps/meteor/app/livechat/server/lib/utils.ts
  • apps/meteor/app/livechat/server/lib/webhooks.ts
  • apps/meteor/app/livechat/server/livechat.ts
  • apps/meteor/app/livechat/server/methods/saveBusinessHour.ts
  • apps/meteor/app/livechat/server/startup.ts
  • apps/meteor/app/logger/README.md
  • apps/meteor/app/mailer/server/api.ts
  • apps/meteor/app/markdown/server/index.ts
  • apps/meteor/app/mentions/server/index.ts
  • apps/meteor/app/message-mark-as-unread/server/index.ts
  • apps/meteor/app/message-pin/server/index.ts
  • apps/meteor/app/message-star/server/index.ts
  • apps/meteor/app/meteor-accounts-saml/server/definition/ISAMLAssertion.ts
  • apps/meteor/app/meteor-accounts-saml/server/index.ts
  • apps/meteor/app/meteor-accounts-saml/server/lib/settings.ts
  • apps/meteor/app/meteor-accounts-saml/server/loginHandler.ts
  • apps/meteor/app/meteor-accounts-saml/server/startup.ts
  • apps/meteor/app/nextcloud/server/addWebdavServer.ts
  • apps/meteor/app/nextcloud/server/index.ts
  • apps/meteor/app/nextcloud/server/lib.ts
  • apps/meteor/app/oauth2-server-config/.gitignore
  • apps/meteor/app/oauth2-server-config/server/index.ts
  • apps/meteor/app/push-notifications/server/index.ts
  • apps/meteor/app/push/server/index.ts
  • apps/meteor/app/push/server/methods.ts
  • apps/meteor/app/push/server/push.ts
  • apps/meteor/app/reactions/server/index.ts
  • apps/meteor/app/retention-policy/README.md
  • apps/meteor/app/search/server/events/index.ts
  • apps/meteor/app/search/server/index.ts
  • apps/meteor/app/search/server/methods.ts
  • apps/meteor/app/settings/server/index.ts
  • apps/meteor/app/settings/server/startup.ts
  • apps/meteor/app/slashcommands-archiveroom/server/server.ts
  • apps/meteor/app/slashcommands-ban/server/ban.ts
  • apps/meteor/app/slashcommands-ban/server/unban.ts
  • apps/meteor/app/slashcommands-create/server/server.ts
  • apps/meteor/app/slashcommands-help/server/server.ts
  • apps/meteor/app/slashcommands-invite/server/server.ts
  • apps/meteor/app/slashcommands-inviteall/server/server.ts
  • apps/meteor/app/slashcommands-join/server/server.ts
  • apps/meteor/app/slashcommands-kick/server/server.ts
  • apps/meteor/app/slashcommands-msg/server/server.ts
  • apps/meteor/app/slashcommands-topic/server/topic.ts
  • apps/meteor/app/slashcommands-unarchiveroom/server/server.ts
  • apps/meteor/app/smarsh-connector/server/startup.ts
  • apps/meteor/app/statistics/server/functions/getStatistics.ts
  • apps/meteor/app/statistics/server/index.ts
  • apps/meteor/app/statistics/server/lib/statistics.ts
  • apps/meteor/app/statistics/server/methods/getStatistics.ts
  • apps/meteor/app/theme/client/imports/components/emoji.css
  • apps/meteor/app/theme/server/server.ts
  • apps/meteor/app/threads/server/hooks/aftersavemessage.ts
  • apps/meteor/app/threads/server/hooks/index.ts
  • apps/meteor/app/threads/server/index.ts
  • apps/meteor/app/threads/server/methods/index.ts
  • apps/meteor/app/token-login/server/index.ts
  • apps/meteor/app/ui-master/server/index.ts
  • apps/meteor/app/ui-message/client/messageBox/AddLinkComposerActionModal.tsx
  • apps/meteor/app/ui-message/client/messageBox/createComposerAPI.spec.ts
  • apps/meteor/app/ui-message/client/messageBox/createComposerAPI.ts
  • apps/meteor/app/ui-utils/server/index.ts
  • apps/meteor/app/ui/client/lib/ChatMessages.ts
  • apps/meteor/app/user-status/server/index.ts
  • apps/meteor/app/utils/client/getURL.ts
  • apps/meteor/app/utils/lib/getURL.ts
  • apps/meteor/app/utils/rocketchat.info
  • apps/meteor/app/utils/server/getURL.ts
  • apps/meteor/app/utils/server/restrictions.ts
  • apps/meteor/app/version-check/server/index.ts
  • apps/meteor/app/webdav/README.md
  • apps/meteor/app/webdav/server/index.ts
  • apps/meteor/app/webdav/server/lib/getWebdavCredentials.ts
  • apps/meteor/app/webdav/server/lib/uploadFileToWebdav.ts
  • apps/meteor/app/webdav/server/lib/webdavClientAdapter.ts
  • apps/meteor/app/webdav/server/methods/addWebdavAccount.ts
  • apps/meteor/app/webdav/server/methods/getFileFromWebdav.ts
  • apps/meteor/app/webdav/server/methods/getWebdavFileList.ts
  • apps/meteor/app/webdav/server/methods/getWebdavFilePreview.ts
  • apps/meteor/app/webdav/server/methods/uploadFileToWebdav.ts
  • apps/meteor/app/wordpress/server/index.ts
  • apps/meteor/app/wordpress/server/lib.ts
  • apps/meteor/client/apps/gameCenter/GameCenterContainer.tsx
  • apps/meteor/client/apps/gameCenter/GameCenterInvitePlayersModal.tsx
  • apps/meteor/client/components/ABAC/ABACUpsellModal/ABACUpsellModal.tsx
  • apps/meteor/client/components/ActionManagerBusyState.tsx
  • apps/meteor/client/components/AppLayoutThemeWrapper.tsx
  • apps/meteor/client/components/Backdrop.tsx
  • apps/meteor/client/components/ConfirmOwnerChangeModal.tsx
  • apps/meteor/client/components/CreateDiscussion/CreateDiscussion.tsx
  • apps/meteor/client/components/CreateDiscussion/DefaultParentRoomField.tsx
  • apps/meteor/client/components/Emoji.tsx
  • apps/meteor/client/components/FilterByText.tsx
  • apps/meteor/client/components/FingerprintChangeModal.tsx
  • apps/meteor/client/components/FingerprintChangeModalConfirmation.tsx
  • apps/meteor/client/components/GazzodownText.tsx
  • apps/meteor/client/components/GenericCard/GenericCard.tsx
  • apps/meteor/client/components/GenericError/GenericError.tsx
  • apps/meteor/client/components/GenericNoResults/GenericNoResults.stories.tsx
  • apps/meteor/client/components/GenericNoResults/GenericNoResults.tsx
  • apps/meteor/client/components/GenericResourceUsage/GenericResourceUsage.tsx
  • apps/meteor/client/components/GenericResourceUsage/GenericResourceUsageSkeleton.tsx
  • apps/meteor/client/components/GenericUpsellModal/GenericUpsellModal.spec.tsx
  • apps/meteor/client/components/GenericUpsellModal/GenericUpsellModal.tsx
  • apps/meteor/client/components/InfiniteListAnchor.tsx
  • apps/meteor/client/components/InfoPanel/RetentionPolicyCallout.tsx
  • apps/meteor/client/components/InvitationBadge/InvitationBadge.tsx
  • apps/meteor/client/components/ListItem.stories.tsx
  • apps/meteor/client/components/ListSkeleton.tsx
  • apps/meteor/client/components/LoadingIndicator.tsx
  • apps/meteor/client/components/LocalTime.tsx
  • apps/meteor/client/components/MarkdownText.spec.tsx
  • apps/meteor/client/components/MarkdownText.tsx
  • apps/meteor/client/components/MarkdownTextInner.tsx
  • apps/meteor/client/components/NotFoundState.tsx
  • apps/meteor/client/components/RawText.tsx
  • apps/meteor/client/components/RoomAutoComplete/RoomAutoComplete.tsx
  • apps/meteor/client/components/RoomAutoCompleteMultiple/RoomAutoCompleteMultiple.tsx
  • apps/meteor/client/components/RoomIcon/OmnichannelRoomIcon/OmnichannelAppSourceRoomIcon.tsx
  • apps/meteor/client/components/RoomIcon/OmnichannelRoomIcon/OmnichannelCoreSourceRoomIcon.tsx
  • apps/meteor/client/components/RoomIcon/OmnichannelRoomIcon/OmnichannelRoomIcon.tsx
  • apps/meteor/client/components/RoomIcon/OmnichannelRoomIcon/provider/OmnichannelRoomIconProvider.tsx
  • apps/meteor/client/components/Sidebar/Content.tsx
  • apps/meteor/client/components/Sidebar/Header.tsx
  • apps/meteor/client/components/Sidebar/ListItem.tsx
  • apps/meteor/client/components/Sidebar/Sidebar.tsx
  • apps/meteor/client/components/Sidebar/SidebarGenericItem.tsx
  • apps/meteor/client/components/Sidebar/SidebarItemsAssembler.tsx
  • apps/meteor/client/components/Sidebar/SidebarNavigationItem.tsx
  • apps/meteor/client/components/SidebarToggler/SidebarTogglerBadge.tsx
  • apps/meteor/client/components/SidebarToggler/SidebarTogglerButton.tsx
  • apps/meteor/client/components/Skeleton.tsx
  • apps/meteor/client/components/TextCopy.tsx
  • apps/meteor/client/components/TwoFactorModal/TwoFactorEmailModal.tsx
  • apps/meteor/client/components/TwoFactorModal/TwoFactorModal.tsx
  • apps/meteor/client/components/TwoFactorModal/TwoFactorPasswordModal.tsx
  • apps/meteor/client/components/TwoFactorModal/TwoFactorTotpModal.tsx
  • apps/meteor/client/components/UTCClock.tsx
  • apps/meteor/client/components/UrlChangeModal.tsx
  • apps/meteor/client/components/UserAndRoomAutoCompleteMultiple/UserAndRoomAutoCompleteMultiple.tsx
  • apps/meteor/client/components/UserAutoCompleteMultiple/UserAutoCompleteMultiple.tsx
  • apps/meteor/client/components/UserAutoCompleteMultiple/UserAutoCompleteMultipleOption.tsx
  • apps/meteor/client/components/UserAutoCompleteMultiple/UserAvatarChip.tsx
  • apps/meteor/client/components/UserCard/UserCard.tsx
  • apps/meteor/client/components/UserCard/UserCardAction.tsx
  • apps/meteor/client/components/UserCard/UserCardActions.tsx
  • apps/meteor/client/components/UserCard/UserCardDialog.tsx
  • apps/meteor/client/components/UserCard/UserCardInfo.tsx
  • apps/meteor/client/components/UserCard/UserCardRole.tsx
  • apps/meteor/client/components/UserCard/UserCardRoles.tsx
  • apps/meteor/client/components/UserCard/UserCardSkeleton.tsx
  • apps/meteor/client/components/UserCard/UserCardUsername.tsx
  • apps/meteor/client/components/UserInfo/UserInfo.tsx
  • apps/meteor/client/components/UserInfo/UserInfoABACAttribute.tsx
  • apps/meteor/client/components/UserInfo/UserInfoABACAttributes.tsx
  • apps/meteor/client/components/UserInfo/UserInfoAction.tsx
  • apps/meteor/client/components/UserInfo/UserInfoUsername.tsx
  • apps/meteor/client/components/UserStatus/ReactiveUserStatus.tsx
  • apps/meteor/client/components/UserStatusMenu.tsx
  • apps/meteor/client/components/UserStatusText/ReactiveUserStatusText.tsx
  • apps/meteor/client/components/UserStatusText/UserStatusText.tsx
  • apps/meteor/client/components/WarningModal.tsx
  • apps/meteor/client/components/Wizard/WizardActions.tsx
  • apps/meteor/client/components/avatar/RoomAvatarEditor.tsx
  • apps/meteor/client/components/avatar/UserAvatarEditor/UserAvatarEditor.tsx
  • apps/meteor/client/components/avatar/UserAvatarEditor/UserAvatarSuggestions.tsx
  • apps/meteor/client/components/connectionStatus/ConnectionStatusBar.tsx
  • apps/meteor/client/components/dataView/Counter.tsx
  • apps/meteor/client/components/dataView/CounterSet.tsx
  • apps/meteor/client/components/dataView/Growth.tsx
  • apps/meteor/client/components/dataView/NegativeGrowthSymbol.tsx
  • apps/meteor/client/components/dataView/PositiveGrowthSymbol.tsx
  • apps/meteor/client/components/deviceManagement/DeviceIcon.tsx
  • apps/meteor/client/components/message/IgnoredContent.tsx
  • apps/meteor/client/components/message/MessageCollapsible.tsx
  • apps/meteor/client/components/message/MessageContentBody.tsx
  • apps/meteor/client/components/message/MessageHeader.tsx
  • apps/meteor/client/components/message/MessageToolbarHolder.tsx
  • apps/meteor/client/components/message/ReadReceiptIndicator.tsx
  • apps/meteor/client/components/message/StatusIndicators.tsx
  • apps/meteor/client/components/message/content/Action.tsx
  • apps/meteor/client/components/message/content/Attachments.tsx
  • apps/meteor/client/components/message/content/BroadcastMetrics.tsx
  • apps/meteor/client/components/message/content/DiscussionMetrics.tsx
  • apps/meteor/client/components/message/content/Location.tsx
  • apps/meteor/client/components/message/content/MessageActions.tsx
  • apps/meteor/client/components/message/content/Reactions.tsx
  • apps/meteor/client/components/message/content/ThreadMetrics.tsx
  • apps/meteor/client/components/message/content/ThreadMetricsFollow.tsx
  • apps/meteor/client/components/message/content/ThreadMetricsParticipants.tsx
  • apps/meteor/client/components/message/content/ThreadMetricsUnreadBadge.tsx
  • apps/meteor/client/components/message/content/UrlPreviews.tsx
  • apps/meteor/client/components/message/content/actions/MessageAction.tsx
  • apps/meteor/client/components/message/content/attachments/AttachmentsItem.tsx
  • apps/meteor/client/components/message/content/attachments/DefaultAttachment.tsx
  • apps/meteor/client/components/message/content/attachments/FileAttachment.tsx
  • apps/meteor/client/components/message/content/attachments/QuoteAttachment.tsx
  • apps/meteor/client/components/message/content/attachments/default/ActionAttachmentButton.tsx
  • apps/meteor/client/components/message/content/attachments/default/ActionAttachtment.tsx
  • apps/meteor/client/components/message/content/attachments/default/Field.tsx
  • apps/meteor/client/components/message/content/attachments/default/FieldsAttachment.tsx
  • apps/meteor/client/components/message/content/attachments/default/ShortField.tsx
  • apps/meteor/client/components/message/content/attachments/file/AudioAttachment.tsx
  • apps/meteor/client/components/message/content/attachments/file/GenericFileAttachment.tsx
  • apps/meteor/client/components/message/content/attachments/file/VideoAttachment.tsx
  • apps/meteor/client/components/message/content/attachments/structure/Attachment.tsx
  • apps/meteor/client/components/message/content/attachments/structure/AttachmentAuthor.tsx
  • apps/meteor/client/components/message/content/attachments/structure/AttachmentAuthorAvatar.tsx
  • apps/meteor/client/components/message/content/attachments/structure/AttachmentAuthorName.tsx
  • apps/meteor/client/components/message/content/attachments/structure/AttachmentAuthorTimestamp.tsx
  • apps/meteor/client/components/message/content/attachments/structure/AttachmentBlock.tsx
  • apps/meteor/client/components/message/content/attachments/structure/AttachmentContent.tsx
  • apps/meteor/client/components/message/content/attachments/structure/AttachmentDetails.tsx
  • apps/meteor/client/components/message/content/attachments/structure/AttachmentDownload.tsx
  • apps/meteor/client/components/message/content/attachments/structure/AttachmentDownloadBase.tsx
  • apps/meteor/client/components/message/content/attachments/structure/AttachmentImage.tsx
  • apps/meteor/client/components/message/content/attachments/structure/AttachmentInner.tsx
  • apps/meteor/client/components/message/content/attachments/structure/AttachmentMessageLink.tsx
  • apps/meteor/client/components/message/content/attachments/structure/AttachmentRow.tsx
  • apps/meteor/client/components/message/content/attachments/structure/AttachmentSize.tsx
  • apps/meteor/client/components/message/content/attachments/structure/AttachmentText.tsx
  • apps/meteor/client/components/message/content/attachments/structure/AttachmentThumb.tsx
  • apps/meteor/client/components/message/content/attachments/structure/AttachmentTitle.tsx
  • apps/meteor/client/components/message/content/attachments/structure/image/ImageBox.tsx
  • apps/meteor/client/components/message/content/attachments/structure/image/Load.tsx
  • apps/meteor/client/components/message/content/attachments/structure/image/Retry.tsx
  • apps/meteor/client/components/message/content/collapsible/CollapsibleContent.tsx
  • apps/meteor/client/components/message/content/location/MapView.tsx
  • apps/meteor/client/components/message/content/location/MapViewFallback.tsx
  • apps/meteor/client/components/message/content/location/MapViewImage.tsx
  • apps/meteor/client/components/message/content/reactions/Reaction.tsx
  • apps/meteor/client/components/message/content/reactions/ReactionTooltip.tsx
  • apps/meteor/client/components/message/content/urlPreviews/OEmbedCollapsible.tsx
  • apps/meteor/client/components/message/content/urlPreviews/OEmbedHtmlPreview.tsx
  • apps/meteor/client/components/message/content/urlPreviews/OEmbedPreviewContent.tsx
  • apps/meteor/client/components/message/content/urlPreviews/OEmbedResolver.tsx
  • apps/meteor/client/components/message/content/urlPreviews/UrlAudioPreview.tsx
  • apps/meteor/client/components/message/header/MessageRoles.tsx
  • apps/meteor/client/components/message/notification/AllMentionNotification.tsx
  • apps/meteor/client/components/message/notification/MeMentionNotification.tsx
  • apps/meteor/client/components/message/notification/MessageNotification.tsx
  • apps/meteor/client/components/message/notification/UnreadMessagesNotification.tsx
  • apps/meteor/client/components/message/toolbar/MessageToolbar.tsx
  • apps/meteor/client/components/message/toolbar/MessageToolbarActionMenu.tsx
  • apps/meteor/client/components/message/toolbar/MessageToolbarItem.tsx
  • apps/meteor/client/components/message/toolbar/items/DefaultItems.tsx
  • apps/meteor/client/components/message/toolbar/items/DirectItems.tsx
  • apps/meteor/client/components/message/toolbar/items/FederatedItems.tsx
  • apps/meteor/client/components/message/toolbar/items/MentionsItems.tsx
  • apps/meteor/client/components/message/toolbar/items/MobileItems.tsx
  • apps/meteor/client/components/message/toolbar/items/PinnedItems.tsx
  • apps/meteor/client/components/message/toolbar/items/SearchItems.tsx
  • apps/meteor/client/components/message/toolbar/items/StarredItems.tsx
  • apps/meteor/client/components/message/toolbar/items/ThreadsItems.tsx
  • apps/meteor/client/components/message/toolbar/items/VideoconfItems.tsx
  • apps/meteor/client/components/message/toolbar/items/VideoconfThreadsItems.tsx
  • apps/meteor/client/components/message/toolbar/items/actions/ForwardMessageAction.tsx
  • apps/meteor/client/components/message/toolbar/items/actions/JumpToMessageAction.tsx
  • apps/meteor/client/components/message/toolbar/items/actions/QuoteMessageAction.tsx
  • apps/meteor/client/components/message/toolbar/items/actions/ReactionMessageAction.tsx
  • apps/meteor/client/components/message/toolbar/items/actions/ReplyInThreadMessageAction.tsx
  • apps/meteor/client/components/message/toolbar/items/actions/Timestamp/TimestampPicker/DatePicker.tsx
  • apps/meteor/client/components/message/toolbar/items/actions/Timestamp/TimestampPicker/FormatSelector.tsx
  • apps/meteor/client/components/message/toolbar/items/actions/Timestamp/TimestampPicker/Preview.tsx
  • apps/meteor/client/components/message/toolbar/items/actions/Timestamp/TimestampPicker/TimePicker.tsx
  • apps/meteor/client/components/message/toolbar/items/actions/Timestamp/TimestampPicker/TimezoneSelector.tsx
  • apps/meteor/client/components/message/toolbar/useWebDAVMessageAction.tsx
  • apps/meteor/client/components/message/uikit/UiKitMessageBlock.tsx
  • apps/meteor/client/components/message/variants/RoomMessage.tsx
  • apps/meteor/client/components/message/variants/SystemMessage.tsx
  • apps/meteor/client/components/message/variants/ThreadMessage.tsx
  • apps/meteor/client/components/message/variants/ThreadMessagePreview.tsx
  • apps/meteor/client/components/message/variants/room/RoomMessageContent.tsx
  • apps/meteor/client/components/message/variants/thread/ThreadMessageContent.tsx
  • apps/meteor/client/components/message/variants/threadPreview/ThreadMessagePreviewBody.tsx
  • apps/meteor/client/contexts/EmojiPickerContext.ts
  • apps/meteor/client/definitions/global.d.ts
  • apps/meteor/client/hooks/useDeviceLogout.tsx
  • apps/meteor/client/hooks/useShowSettingAlerts.tsx
  • apps/meteor/client/hooks/useUpdateAvatar.ts
  • apps/meteor/client/hooks/useUserStatusTooltip.tsx
  • apps/meteor/client/hooks/useWorkspaceInfo.ts
  • apps/meteor/client/hooks/webdav/useWebDAVAccountIntegrationsQuery.ts
  • apps/meteor/client/importPackages.ts
  • apps/meteor/client/lib/2fa/process2faReturn.ts
  • apps/meteor/client/lib/buildAuthDeeplinkURL.ts
  • apps/meteor/client/lib/customEmoji.ts
  • apps/meteor/client/lib/e2ee/rocketchat.e2e.room.spec.ts
  • apps/meteor/client/lib/e2ee/rocketchat.e2e.room.ts
  • apps/meteor/client/lib/getMarkdownParserLimit.spec.ts
  • apps/meteor/client/lib/getMarkdownParserLimit.ts
  • apps/meteor/client/lib/getPageMeta.spec.ts
  • apps/meteor/client/lib/getPageMeta.ts
  • apps/meteor/client/lib/getUserInitialStatus.ts
  • apps/meteor/client/lib/getWebdavServerName.ts
  • apps/meteor/client/lib/normalizeThreadMessage.spec.tsx
  • apps/meteor/client/lib/normalizeThreadMessage.tsx
  • apps/meteor/client/lib/parseMessageTextToAstMarkdown.spec.ts
  • apps/meteor/client/lib/parseMessageTextToAstMarkdown.ts
  • apps/meteor/client/lib/sdk/ddpSdk.ts
  • apps/meteor/client/lib/utils/dateFormat.spec.ts
  • apps/meteor/client/lib/utils/dateFormat.ts
  • apps/meteor/client/lib/utils/detectEmoji.ts
  • apps/meteor/client/lib/utils/getCodeSettingError.spec.ts
  • apps/meteor/client/lib/utils/getCodeSettingError.ts
  • apps/meteor/client/lib/utils/normalizeMessagePreview/normalizeMessagePreview.spec.ts
  • apps/meteor/client/lib/utils/normalizeMessagePreview/normalizeMessagePreview.ts
  • apps/meteor/client/lib/utils/renderEmoji.ts
  • apps/meteor/client/meteor/login/facebook.ts
  • apps/meteor/client/meteor/login/google.ts
  • apps/meteor/client/meteor/login/meteorDeveloperAccount.ts
  • apps/meteor/client/meteor/login/twitter.ts
  • apps/meteor/client/meteor/startup/accounts.ts
  • apps/meteor/client/navbar/NavBarControls/NavBarControlsMenu.tsx
  • apps/meteor/client/navbar/NavBarNavigation.tsx
  • apps/meteor/client/navbar/NavBarOmnichannelGroup/NavBarItemOmnichannelContact.tsx
  • apps/meteor/client/navbar/NavBarOmnichannelGroup/NavBarItemOmnichannelLivechatToggle.tsx
  • apps/meteor/client/navbar/NavBarOmnichannelGroup/NavBarItemOmnichannelQueue.tsx
  • apps/meteor/client/navbar/NavBarPagesGroup/NavBarItemDirectoryPage.tsx
  • apps/meteor/client/navbar/NavBarPagesGroup/NavBarItemHomePage.tsx
  • apps/meteor/client/navbar/NavBarPagesGroup/NavBarItemMarketPlaceMenu.tsx
  • apps/meteor/client/navbar/NavBarPagesGroup/NavBarItemSort.tsx
  • apps/meteor/client/navbar/NavBarPagesGroup/NavBarPagesStackMenu.tsx
  • apps/meteor/client/navbar/NavBarPagesGroup/actions/CreateChannelModal.tsx
  • apps/meteor/client/navbar/NavBarPagesGroup/actions/CreateDirectMessage.tsx
  • apps/meteor/client/navbar/NavBarPagesGroup/actions/CreateTeamModal.tsx
  • apps/meteor/client/navbar/NavBarPagesGroup/hooks/useGroupingListItems.tsx
  • apps/meteor/client/navbar/NavBarPagesGroup/hooks/useSortModeItems.tsx
  • apps/meteor/client/navbar/NavBarPagesGroup/hooks/useViewModeItems.tsx
  • apps/meteor/client/navbar/NavBarSearch/NavBarAISearch.spec.tsx
  • apps/meteor/client/navbar/NavBarSearch/NavBarAISearch.tsx
  • apps/meteor/client/navbar/NavBarSearch/NavBarAISearchListbox.tsx
  • apps/meteor/client/navbar/NavBarSearch/NavBarAISearchNoResults.tsx
  • apps/meteor/client/navbar/NavBarSearch/NavBarSearch.tsx
  • apps/meteor/client/navbar/NavBarSearch/NavBarSearchFilterSuggestions.tsx
  • apps/meteor/client/navbar/NavBarSearch/NavBarSearchInputAddon.tsx
  • apps/meteor/client/navbar/NavBarSearch/NavBarSearchIntelligentSection.spec.tsx
  • apps/meteor/client/navbar/NavBarSearch/NavBarSearchIntelligentSection.tsx
  • apps/meteor/client/navbar/NavBarSearch/NavBarSearchItem.tsx
  • apps/meteor/client/navbar/NavBarSearch/NavBarSearchItemWithData.tsx
  • apps/meteor/client/navbar/NavBarSearch/NavBarSearchListbox.tsx
  • apps/meteor/client/navbar/NavBarSearch/NavBarSearchMessageRow.tsx
  • apps/meteor/client/navbar/NavBarSearch/NavBarSearchRoomSection.tsx
  • apps/meteor/client/navbar/NavBarSearch/NavBarSearchRow.tsx
  • apps/meteor/client/navbar/NavBarSearch/NavBarSearchUserRow.tsx
  • apps/meteor/client/navbar/NavBarSearch/hooks/aiSearchAdapters.ts
  • apps/meteor/client/navbar/NavBarSearch/hooks/useAISearchItems.spec.ts
  • apps/meteor/client/navbar/NavBarSearch/hooks/useAISearchItems.ts
  • apps/meteor/client/navbar/NavBarSearch/hooks/useAISearchRooms.spec.ts
  • apps/meteor/client/navbar/NavBarSearch/hooks/useAISearchRooms.ts
  • apps/meteor/client/navbar/NavBarSearch/hooks/useNavBarAISearch.ts
  • apps/meteor/client/navbar/NavBarSearch/hooks/useSearchItems.spec.ts
  • apps/meteor/client/navbar/NavBarSearch/hooks/useSearchItems.ts
  • apps/meteor/client/navbar/NavBarSettingsToolbar/NavBarItemAdministrationMenu.tsx
  • apps/meteor/client/navbar/NavBarSettingsToolbar/NavBarItemLoginPage.tsx
  • apps/meteor/client/navbar/NavBarSettingsToolbar/UserMenu/EditStatusModal.tsx
  • apps/meteor/client/navbar/NavBarSettingsToolbar/UserMenu/KeyboardShortcutsModal.tsx
  • apps/meteor/client/navbar/NavBarSettingsToolbar/UserMenu/UserMenu.tsx
  • apps/meteor/client/navbar/NavBarSettingsToolbar/UserMenu/UserMenuButton.tsx
  • apps/meteor/client/navbar/NavBarSettingsToolbar/UserMenu/UserMenuHeader.tsx
  • apps/meteor/client/navbar/NavBarSettingsToolbar/UserMenu/hooks/useStatusItems.tsx
  • apps/meteor/client/portals/SidebarPortal/SidebarPortal.tsx
  • apps/meteor/client/portals/SidebarPortal/SidebarPortalV2.tsx
  • apps/meteor/client/portals/SidebarPortal/index.tsx
  • apps/meteor/client/portals/VideoConfPopupPortal.tsx
  • apps/meteor/client/providers/ActionManagerProvider.tsx
  • apps/meteor/client/providers/AppsProvider.tsx
  • apps/meteor/client/providers/AttachmentProvider.tsx
  • apps/meteor/client/providers/AuthenticationProvider/AuthenticationProvider.tsx
  • apps/meteor/client/providers/AuthorizationProvider.tsx
  • apps/meteor/client/providers/AvatarUrlProvider.tsx
  • apps/meteor/client/providers/CustomSoundProvider/CustomSoundProvider.tsx
  • apps/meteor/client/providers/DeviceProvider/DeviceProvider.tsx
  • apps/meteor/client/providers/EmojiPickerProvider/EmojiPickerProvider.spec.tsx
  • apps/meteor/client/providers/EmojiPickerProvider/EmojiPickerProvider.tsx
  • apps/meteor/client/providers/ImageGalleryProvider.tsx
  • apps/meteor/client/providers/LayoutProvider.tsx
  • apps/meteor/client/providers/MediaCallProvider.tsx
  • apps/meteor/client/providers/MediaPlayerProvider/MediaPlayerContext.ts
  • apps/meteor/client/providers/MediaPlayerProvider/MediaPlayerProvider.tsx
  • apps/meteor/client/providers/MediaPlayerProvider/index.ts
  • apps/meteor/client/providers/MeteorProvider.tsx
  • apps/meteor/client/providers/OmnichannelProvider.tsx
  • apps/meteor/client/providers/RouterProvider.tsx
  • apps/meteor/client/providers/ServerProvider.tsx
  • apps/meteor/client/providers/SessionProvider.tsx
  • apps/meteor/client/providers/SettingsProvider.tsx
  • apps/meteor/client/providers/ToastMessagesProvider.tsx
  • apps/meteor/client/providers/TranslationProvider.tsx
  • apps/meteor/client/providers/UserPresenceProvider.tsx
  • apps/meteor/client/providers/UserProvider/UserProvider.tsx
  • apps/meteor/client/providers/VideoConfProvider.tsx
  • apps/meteor/client/sidebar/Item/Condensed.stories.tsx
  • apps/meteor/client/sidebar/Item/Condensed.tsx
  • apps/meteor/client/sidebar/Item/Extended.stories.tsx
  • apps/meteor/client/sidebar/Item/Extended.tsx
  • apps/meteor/client/sidebar/Item/Medium.stories.tsx
  • apps/meteor/client/sidebar/Item/Medium.tsx
  • apps/meteor/client/sidebar/RoomList/RoomListCollapser.tsx
  • apps/meteor/client/sidebar/RoomList/RoomListRow.tsx
  • apps/meteor/client/sidebar/RoomList/RoomListRowWrapper.tsx
  • apps/meteor/client/sidebar/RoomList/RoomListWrapper.tsx
  • apps/meteor/client/sidebar/RoomMenu.tsx
  • apps/meteor/client/sidebar/Sidebar.tsx
  • apps/meteor/client/sidebar/SidebarPortal.tsx
  • apps/meteor/client/sidebar/badges/SidebarItemBadges.tsx
  • apps/meteor/client/sidebar/badges/UnreadBadge.tsx
  • apps/meteor/client/sidebar/footer/SidebarFooterDefault.tsx
  • apps/meteor/client/sidebar/footer/SidebarFooterWatermark.tsx
  • apps/meteor/client/sidebar/header/MatrixFederationSearch/FederatedRoomList.tsx
  • apps/meteor/client/sidebar/header/MatrixFederationSearch/FederatedRoomListErrorBoundary.tsx
  • apps/meteor/client/sidebar/header/MatrixFederationSearch/FederatedRoomListItem.tsx
  • apps/meteor/client/sidebar/header/MatrixFederationSearch/MatrixFederationManageServerModal.tsx
  • apps/meteor/client/sidebar/header/MatrixFederationSearch/MatrixFederationRemoveServerList.tsx
  • apps/meteor/client/sidebar/header/MatrixFederationSearch/MatrixFederationSearch.tsx
  • apps/meteor/client/sidebar/header/MatrixFederationSearch/MatrixFederationSearchModalContent.tsx
  • apps/meteor/client/sidebar/sections/AirGappedRestrictionBanner/AirGappedRestrictionBanner.tsx
  • apps/meteor/client/sidebar/sections/AirGappedRestrictionBanner/AirGappedRestrictionWarning.tsx
  • apps/meteor/client/sidebar/sections/NowPlayingSection.tsx
  • apps/meteor/client/sidebar/sections/SidebarCard.tsx
  • apps/meteor/client/sidebar/sections/StatusDisabledBanner.tsx
  • apps/meteor/client/startup/audit.tsx
  • apps/meteor/client/startup/routes.tsx
  • apps/meteor/client/startup/slashCommands/federation.ts
  • apps/meteor/client/stories/contexts/ModalContextMock.tsx
  • apps/meteor/client/stories/contexts/QueryClientProviderMock.tsx
  • apps/meteor/client/stories/contexts/RouterContextMock.tsx
  • apps/meteor/client/stories/contexts/ServerContextMock.tsx
  • apps/meteor/client/stories/contexts/TranslationContextMock.tsx
  • apps/meteor/client/views/OAuthTwoFactorAuthentication/OAuthTwoFactorAuthenticationRouter.tsx
  • apps/meteor/client/views/account/AccountRouter.tsx
  • apps/meteor/client/views/account/accessibility/AccessibilityPage.tsx
  • apps/meteor/client/views/account/deviceManagement/DeviceManagementAccountTable/DeviceManagementAccountRow.tsx
  • apps/meteor/client/views/account/deviceManagement/DeviceManagementAccountTable/DeviceManagementAccountTable.tsx
  • apps/meteor/client/views/account/featurePreview/AccountFeaturePreviewPage.tsx
  • apps/meteor/client/views/account/integrations/AccountIntegrationsPage.tsx
  • apps/meteor/client/views/account/integrations/AccountIntegrationsRoute.tsx
  • apps/meteor/client/views/account/integrations/hooks/useRemoveWebDAVAccountIntegrationMutation.ts
  • apps/meteor/client/views/account/omnichannel/OmnichannelPreferencesPage.tsx
  • apps/meteor/client/views/account/omnichannel/PreferencesConversationTranscript.tsx
  • apps/meteor/client/views/account/preferences/AccountPreferencesPage.tsx
  • apps/meteor/client/views/account/preferences/MyDataModal.tsx
  • apps/meteor/client/views/account/preferences/PreferencesSoundSection.tsx
  • apps/meteor/client/views/account/profile/AccountProfileForm.tsx
  • apps/meteor/client/views/account/profile/AccountProfilePage.tsx
  • apps/meteor/client/views/account/profile/ActionConfirmModal.tsx
  • apps/meteor/client/views/account/routes.tsx
  • apps/meteor/client/views/account/security/AccountSecurityPage.tsx
  • apps/meteor/client/views/account/security/BackupCodesModal.tsx
  • apps/meteor/client/views/account/security/ChangePassphrase.tsx
  • apps/meteor/client/views/account/security/EndToEnd.tsx
  • apps/meteor/client/views/account/security/ResetPassphrase.tsx
  • apps/meteor/client/views/account/security/TwoFactorEmail.tsx
  • apps/meteor/client/views/account/security/TwoFactorTOTP.tsx
  • apps/meteor/client/views/account/sidebarItems.tsx
  • apps/meteor/client/views/account/tokens/AccountTokensTable/AccountTokensRow.tsx
  • apps/meteor/client/views/account/tokens/AccountTokensTable/AddToken.tsx
  • apps/meteor/client/views/admin/ABAC/ABACAttributesTab/AttributeMenu.tsx
  • apps/meteor/client/views/admin/ABAC/ABACAttributesTab/AttributesContextualBar.tsx
  • apps/meteor/client/views/admin/ABAC/ABACAttributesTab/AttributesContextualBarWithData.tsx
  • apps/meteor/client/views/admin/ABAC/ABACAttributesTab/AttributesForm.spec.tsx
  • apps/meteor/client/views/admin/ABAC/ABACAttributesTab/AttributesForm.stories.tsx
  • apps/meteor/client/views/admin/ABAC/ABACAttributesTab/AttributesForm.tsx
  • apps/meteor/client/views/admin/ABAC/ABACAttributesTab/AttributesPage.tsx
  • apps/meteor/client/views/admin/ABAC/ABACLogsTab/LogsPage.tsx
  • apps/meteor/client/views/admin/ABAC/ABACRoomsTab/DeleteRoomModal.tsx
  • apps/meteor/client/views/admin/ABAC/ABACRoomsTab/RoomForm.tsx
  • apps/meteor/client/views/admin/ABAC/ABACRoomsTab/RoomFormAttributeField.tsx
  • apps/meteor/client/views/admin/ABAC/ABACRoomsTab/RoomFormAttributeFields.tsx
  • apps/meteor/client/views/admin/ABAC/ABACRoomsTab/RoomFormAutocomplete.tsx
  • apps/meteor/client/views/admin/ABAC/ABACRoomsTab/RoomFormAutocompleteDummy.tsx
  • apps/meteor/client/views/admin/ABAC/ABACRoomsTab/RoomMenu.tsx
  • apps/meteor/client/views/admin/ABAC/ABACRoomsTab/RoomsContextualBar.tsx
  • apps/meteor/client/views/admin/ABAC/ABACRoomsTab/RoomsContextualBarWithData.tsx
  • apps/meteor/client/views/admin/ABAC/ABACRoomsTab/RoomsPage.tsx
  • apps/meteor/client/views/admin/ABAC/ABACSettingTab/AbacEnabledToggle.tsx
  • apps/meteor/client/views/admin/ABAC/ABACSettingTab/SettingField.tsx
  • apps/meteor/client/views/admin/ABAC/ABACSettingTab/SettingsPage.tsx
  • apps/meteor/client/views/admin/ABAC/ABACSettingTab/WarningModal.tsx
  • apps/meteor/client/views/admin/ABAC/AdminABACPage.tsx
  • apps/meteor/client/views/admin/AdministrationLayout.tsx
  • apps/meteor/client/views/admin/AdministrationRouter.tsx
  • apps/meteor/client/views/admin/EditableSettingsContext.ts
  • apps/meteor/client/views/admin/aiCenter/AICenterCapabilityCard.tsx
  • apps/meteor/client/views/admin/aiCenter/AICenterOverview.tsx
  • apps/meteor/client/views/admin/aiCenter/AICenterRoute.tsx
  • apps/meteor/client/views/admin/aiCenter/AISettingsSection.tsx
  • apps/meteor/client/views/admin/customEmoji/AddCustomEmoji.tsx
  • apps/meteor/client/views/admin/customEmoji/CustomEmoji.tsx
  • apps/meteor/client/views/admin/customEmoji/EditCustomEmoji.tsx
  • apps/meteor/client/views/admin/customEmoji/EditCustomEmojiWithData.tsx
  • apps/meteor/client/views/admin/customSounds/AddCustomSound.tsx
  • apps/meteor/client/views/admin/customSounds/CustomSoundsTable/CustomSoundRow.tsx
  • apps/meteor/client/views/admin/customSounds/CustomSoundsTable/CustomSoundsTable.stories.tsx
  • apps/meteor/client/views/admin/customSounds/CustomSoundsTable/CustomSoundsTable.tsx
  • apps/meteor/client/views/admin/customSounds/EditCustomSound.tsx
  • apps/meteor/client/views/admin/customSounds/EditSound.tsx
  • apps/meteor/client/views/admin/customUserStatus/CustomUserStatusDisabledModal.tsx
  • apps/meteor/client/views/admin/customUserStatus/CustomUserStatusForm.tsx
  • apps/meteor/client/views/admin/customUserStatus/CustomUserStatusFormWithData.tsx
  • apps/meteor/client/views/admin/customUserStatus/CustomUserStatusService.tsx
  • apps/meteor/client/views/admin/customUserStatus/CustomUserStatusTable/CustomUserStatusRow.tsx
  • apps/meteor/client/views/admin/customUserStatus/CustomUserStatusTable/CustomUserStatusTable.tsx
  • apps/meteor/client/views/admin/deviceManagement/DeviceManagementInfo/DeviceManagementInfo.tsx
  • apps/meteor/client/views/admin/deviceManagement/DeviceManagementInfo/DeviceManagementInfoWithData.tsx
  • apps/meteor/client/views/admin/emailInbox/EmailInboxForm.tsx
  • apps/meteor/client/views/admin/emailInbox/EmailInboxFormWithData.tsx
  • apps/meteor/client/views/admin/emailInbox/SendTestButton.tsx
  • apps/meteor/client/views/admin/engagementDashboard/EngagementDashboardCard.tsx
  • apps/meteor/client/views/admin/engagementDashboard/EngagementDashboardCardErrorBoundary.tsx
  • apps/meteor/client/views/admin/engagementDashboard/EngagementDashboardCardFilter.tsx
  • apps/meteor/client/views/admin/engagementDashboard/EngagementDashboardPage.tsx
  • apps/meteor/client/views/admin/engagementDashboard/channels/useChannelsList.ts
  • apps/meteor/client/views/admin/engagementDashboard/dataView/LegendSymbol.tsx
  • apps/meteor/client/views/admin/engagementDashboard/messages/MessagesPerChannelSection.tsx
  • apps/meteor/client/views/admin/engagementDashboard/messages/MessagesSentSection.tsx
  • apps/meteor/client/views/admin/engagementDashboard/messages/MessagesTab.tsx
  • apps/meteor/client/views/admin/engagementDashboard/messages/useMessageOrigins.ts
  • apps/meteor/client/views/admin/engagementDashboard/messages/useMessagesSent.ts
  • apps/meteor/client/views/admin/engagementDashboard/messages/useTopFivePopularChannels.ts
  • apps/meteor/client/views/admin/engagementDashboard/users/ActiveUsersSection.tsx
  • apps/meteor/client/views/admin/engagementDashboard/users/BusiestChatTimesSection.tsx
  • apps/meteor/client/views/admin/engagementDashboard/users/ContentForDays.tsx
  • apps/meteor/client/views/admin/engagementDashboard/users/ContentForHours.tsx
  • apps/meteor/client/views/admin/engagementDashboard/users/NewUsersSection.tsx
  • apps/meteor/client/views/admin/engagementDashboard/users/UsersByTimeOfTheDaySection.tsx
  • apps/meteor/client/views/admin/engagementDashboard/users/UsersTab.tsx
  • apps/meteor/client/views/admin/engagementDashboard/users/useActiveUsers.ts
  • apps/meteor/client/views/admin/engagementDashboard/users/useUsersByTimeOfTheDay.ts
  • apps/meteor/client/views/admin/featurePreview/AdminFeaturePreviewPage.tsx
  • apps/meteor/client/views/admin/import/ImportOperationSummary.tsx
  • apps/meteor/client/views/admin/import/ImportOperationSummarySkeleton.tsx
  • apps/meteor/client/views/admin/import/ImportProgressPage.tsx
  • apps/meteor/client/views/admin/import/ImportRoute.tsx
  • apps/meteor/client/views/admin/import/PrepareChannels.tsx
  • apps/meteor/client/views/admin/import/PrepareContacts.tsx
  • apps/meteor/client/views/admin/import/PrepareImportPage.tsx
  • apps/meteor/client/views/admin/import/PrepareUsers.tsx
  • apps/meteor/client/views/admin/integrations/EditIntegrationsPageWithData.tsx
  • apps/meteor/client/views/admin/integrations/IntegrationRow.tsx
  • apps/meteor/client/views/admin/integrations/IntegrationsPage.tsx
  • apps/meteor/client/views/admin/integrations/IntegrationsTable.tsx
  • apps/meteor/client/views/admin/integrations/NewBot.tsx
  • apps/meteor/client/views/admin/integrations/NewZapier.tsx
  • apps/meteor/client/views/admin/integrations/incoming/EditIncomingWebhook.tsx
  • apps/meteor/client/views/admin/integrations/incoming/IncomingWebhookForm.tsx
  • apps/meteor/client/views/admin/integrations/outgoing/EditOutgoingWebhook.tsx
  • apps/meteor/client/views/admin/integrations/outgoing/OutgoingWebhookForm.tsx
  • apps/meteor/client/views/admin/integrations/outgoing/history/HistoryContent.tsx
  • apps/meteor/client/views/admin/integrations/outgoing/history/HistoryItem.tsx
  • apps/meteor/client/views/admin/integrations/outgoing/history/OutgoingWebhookHistoryPage.tsx
  • apps/meteor/client/views/admin/invites/InviteRow.tsx
  • apps/meteor/client/views/admin/invites/InvitesPage.tsx
  • apps/meteor/client/views/admin/mailer/MailerPage.tsx
  • apps/meteor/client/views/admin/moderation/MessageContextFooter.tsx
  • apps/meteor/client/views/admin/moderation/MessageReportInfo.tsx
  • apps/meteor/client/views/admin/moderation/ModConsoleReportDetails.tsx
  • apps/meteor/client/views/admin/moderation/ModerationConsolePage.tsx
  • apps/meteor/client/views/admin/moderation/UserMessages.tsx
  • apps/meteor/client/views/admin/moderation/UserReports/UserContextFooter.tsx
  • apps/meteor/client/views/admin/moderation/UserReports/UserReportInfo.tsx
  • apps/meteor/client/views/admin/moderation/helpers/DateRangePicker.tsx
  • apps/meteor/client/views/admin/moderation/helpers/ModerationFilter.tsx
  • apps/meteor/client/views/admin/moderation/helpers/ReportReason.tsx
  • apps/meteor/client/views/admin/moderation/helpers/ReportReasonCollapsible.tsx
  • apps/meteor/client/views/admin/moderation/helpers/UserColumn.tsx
  • apps/meteor/client/views/admin/oauthApps/EditOauthApp.tsx
  • apps/meteor/client/views/admin/oauthApps/EditOauthAppWithData.tsx
  • apps/meteor/client/views/admin/oauthApps/OAuthAddApp.tsx
  • apps/meteor/client/views/admin/permissions/EditRolePage.tsx
  • apps/meteor/client/views/admin/permissions/EditRolePageWithData.tsx
  • apps/meteor/client/views/admin/permissions/PermissionsPage.tsx
  • apps/meteor/client/views/admin/permissions/PermissionsTable/PermissionRow.tsx
  • apps/meteor/client/views/admin/permissions/PermissionsTable/PermissionsTable.stories.tsx
  • apps/meteor/client/views/admin/permissions/PermissionsTable/PermissionsTable.tsx
  • apps/meteor/client/views/admin/permissions/PermissionsTable/PermissionsTableFilter.tsx
  • apps/meteor/client/views/admin/permissions/PermissionsTable/RoleCell.tsx
  • apps/meteor/client/views/admin/permissions/PermissionsTable/RoleHeader.tsx
  • apps/meteor/client/views/admin/permissions/RoleForm.tsx
  • apps/meteor/client/views/admin/permissions/UsersInRole/UsersInRolePage.tsx
  • apps/meteor/client/views/admin/permissions/UsersInRole/UsersInRoleTable/UsersInRoleTable.stories.tsx
  • apps/meteor/client/views/admin/permissions/UsersInRole/UsersInRoleTable/UsersInRoleTable.tsx
  • apps/meteor/client/views/admin/permissions/UsersInRole/UsersInRoleTable/UsersInRoleTableRow.tsx
  • apps/meteor/client/views/admin/rooms/EditRoom.tsx
  • apps/meteor/client/views/admin/rooms/EditRoomWithData.tsx
  • apps/meteor/client/views/admin/rooms/RoomRow.tsx
  • apps/meteor/client/views/admin/rooms/RoomsTable.tsx
  • apps/meteor/client/views/admin/rooms/RoomsTableFilters.tsx
  • apps/meteor/client/views/admin/routes.tsx
  • apps/meteor/client/views/admin/settings/EditableSettingsProvider.tsx
  • apps/meteor/client/views/admin/settings/Setting/MemoizedSetting.tsx
  • apps/meteor/client/views/admin/settings/Setting/Setting.tsx
  • apps/meteor/client/views/admin/settings/Setting/SettingSkeleton.tsx
  • apps/meteor/client/views/admin/settings/Setting/inputs/ActionSettingInput.tsx
  • apps/meteor/client/views/admin/settings/Setting/inputs/AssetSettingInput.tsx
  • apps/meteor/client/views/admin/settings/Setting/inputs/BooleanSettingInput.tsx
  • apps/meteor/client/views/admin/settings/Setting/inputs/CodeMirror/CodeMirror.spec.tsx
  • apps/meteor/client/views/admin/settings/Setting/inputs/CodeMirror/CodeMirror.tsx
  • apps/meteor/client/views/admin/settings/Setting/inputs/CodeMirror/CodeMirrorBox.tsx
  • apps/meteor/client/views/admin/settings/Setting/inputs/CodeSettingInput.spec.tsx
  • apps/meteor/client/views/admin/settings/Setting/inputs/CodeSettingInput.tsx
  • apps/meteor/client/views/admin/settings/Setting/inputs/ColorSettingInput.tsx
  • apps/meteor/client/views/admin/settings/Setting/inputs/EndpointActionInput.tsx
  • apps/meteor/client/views/admin/settings/Setting/inputs/FontSettingInput.tsx
  • apps/meteor/client/views/admin/settings/Setting/inputs/GenericSettingInput.tsx
  • apps/meteor/client/views/admin/settings/Setting/inputs/IntSettingInput.tsx
  • apps/meteor/client/views/admin/settings/Setting/inputs/LanguageSettingInput.tsx
  • apps/meteor/client/views/admin/settings/Setting/inputs/LookupSettingInput.tsx
  • apps/meteor/client/views/admin/settings/Setting/inputs/MethodActionInput.tsx
  • apps/meteor/client/views/admin/settings/Setting/inputs/MultiSelectSettingInput.tsx
  • apps/meteor/client/views/admin/settings/Setting/inputs/PasswordSettingInput.tsx
  • apps/meteor/client/views/admin/settings/Setting/inputs/RangeSettingInput.tsx
  • apps/meteor/client/views/admin/settings/Setting/inputs/RelativeUrlSettingInput.tsx
  • apps/meteor/client/views/admin/settings/Setting/inputs/RoomPickSettingInput.tsx
  • apps/meteor/client/views/admin/settings/Setting/inputs/SelectSettingInput.tsx
  • apps/meteor/client/views/admin/settings/Setting/inputs/SelectTimezoneSettingInput.tsx
  • apps/meteor/client/views/admin/settings/Setting/inputs/StringSettingInput.tsx
  • apps/meteor/client/views/admin/settings/Setting/inputs/TimespanSettingInput.tsx
  • apps/meteor/client/views/admin/settings/SettingsGroupCard.tsx
  • apps/meteor/client/views/admin/settings/SettingsGroupPage/SettingsGroupPage.tsx
  • apps/meteor/client/views/admin/settings/SettingsGroupSelector/SettingsGroupSelector.tsx
  • apps/meteor/client/views/admin/settings/SettingsPage.tsx
  • apps/meteor/client/views/admin/settings/SettingsSection/SettingsSection.tsx
  • apps/meteor/client/views/admin/settings/groups/BaseGroupPage.tsx
  • apps/meteor/client/views/admin/settings/groups/EnterpriseGroupPage.tsx
  • apps/meteor/client/views/admin/settings/groups/GenericGroupPage.tsx
  • apps/meteor/client/views/admin/settings/groups/LDAPGroupPage.tsx
  • apps/meteor/client/views/admin/settings/groups/OAuthGroupPage/CreateOAuthModal.tsx
  • apps/meteor/client/views/admin/settings/groups/OAuthGroupPage/OAuthGroupPage.tsx
  • apps/meteor/client/views/admin/settings/groups/TabbedGroupPage.tsx
  • apps/meteor/client/views/admin/sidebar/AdminSidebarPages.tsx
  • apps/meteor/client/views/admin/sidebarItems.ts
  • apps/meteor/client/views/admin/subscription/SubscriptionCalloutLimits.tsx
  • apps/meteor/client/views/admin/subscription/SubscriptionPage.tsx
  • apps/meteor/client/views/admin/subscription/SubscriptionPageSkeleton.tsx
  • apps/meteor/client/views/admin/subscription/components/CancelSubscriptionModal.tsx
  • apps/meteor/client/views/admin/subscription/components/FeatureUsageCard.tsx
  • apps/meteor/client/views/admin/subscription/components/FeatureUsageCardBody.tsx
  • apps/meteor/client/views/admin/subscription/components/InfoTextIconModal.tsx
  • apps/meteor/client/views/admin/subscription/components/UpgradeToGetMore.tsx
  • apps/meteor/client/views/admin/subscription/components/UsagePieGraph.tsx
  • apps/meteor/client/views/admin/subscription/components/cards/ActiveSessionsCard.tsx
  • apps/meteor/client/views/admin/subscription/components/cards/ActiveSessionsPeakCard.tsx
  • apps/meteor/client/views/admin/subscription/components/cards/AppsUsageCard/AppsUsageCard.tsx
  • apps/meteor/client/views/admin/subscription/components/cards/AppsUsageCard/AppsUsageCardSection.tsx
  • apps/meteor/client/views/admin/subscription/components/cards/CountMACCard.tsx
  • apps/meteor/client/views/admin/subscription/components/cards/CountSeatsCard.tsx
  • apps/meteor/client/views/admin/subscription/components/cards/FeaturesCard.tsx
  • apps/meteor/client/views/admin/subscription/components/cards/MACCard.tsx
  • apps/meteor/client/views/admin/subscription/components/cards/PlanCard.tsx
  • apps/meteor/client/views/admin/subscription/components/cards/PlanCard/ManageLicenseModal/LicenseFilePreview.tsx
  • apps/meteor/client/views/admin/subscription/components/cards/PlanCard/ManageLicenseModal/LicenseStatus.tsx
  • apps/meteor/client/views/admin/subscription/components/cards/PlanCard/ManageLicenseModal/ManageLicenseModal.spec.tsx
  • apps/meteor/client/views/admin/subscription/components/cards/PlanCard/ManageLicenseModal/ManageLicenseModal.stories.tsx
  • apps/meteor/client/views/admin/subscription/components/cards/PlanCard/ManageLicenseModal/ManageLicenseModal.tsx
  • apps/meteor/client/views/admin/subscription/components/cards/PlanCard/ManageLicenseModal/getLicenseInvalidMessage.spec.ts
  • apps/meteor/client/views/admin/subscription/components/cards/PlanCard/ManageLicenseModal/getLicenseInvalidMessage.ts
  • apps/meteor/client/views/admin/subscription/components/cards/PlanCard/ManageLicenseModal/index.ts
  • apps/meteor/client/views/admin/subscription/components/cards/PlanCard/ManageLicenseModal/useLicenseFileInput.spec.ts
  • apps/meteor/client/views/admin/subscription/components/cards/PlanCard/ManageLicenseModal/useLicenseFileInput.ts
  • apps/meteor/client/views/admin/subscription/components/cards/PlanCard/PlanCardCommunity.tsx
  • apps/meteor/client/views/admin/subscription/components/cards/PlanCard/PlanCardHeader.tsx
  • apps/meteor/client/views/admin/subscription/components/cards/PlanCard/PlanCardLicenseDetails.tsx
  • apps/meteor/client/views/admin/subscription/components/cards/PlanCard/PlanCardPremium.tsx
  • apps/meteor/client/views/admin/subscription/components/cards/PlanCard/PlanCardTrial.tsx
  • apps/meteor/client/views/admin/subscription/components/cards/SeatsCard.tsx
  • apps/meteor/client/views/admin/subscription/hooks/useValidateLicense.ts
  • apps/meteor/client/views/admin/subscription/surface/UiKitSubscriptionLicense.tsx
  • apps/meteor/client/views/admin/subscription/surface/UiKitSubscriptionLicenseSurface.tsx
  • apps/meteor/client/views/admin/users/AdminInviteUsers.tsx
  • apps/meteor/client/views/admin/users/AdminUserCreated.tsx
  • apps/meteor/client/views/admin/users/AdminUserForm.tsx
  • apps/meteor/client/views/admin/users/AdminUserFormWithData.tsx
  • apps/meteor/client/views/admin/users/AdminUserInfoWithData.tsx
  • apps/meteor/client/views/admin/users/AdminUserSetRandomPasswordContent.tsx
  • apps/meteor/client/views/admin/users/AdminUserSetRandomPasswordRadios.tsx
  • apps/meteor/client/views/admin/users/AdminUserUpgrade.tsx
  • apps/meteor/client/views/admin/users/AdminUsersPage.tsx
  • apps/meteor/client/views/admin/users/PasswordFieldSkeleton.tsx
  • apps/meteor/client/views/admin/users/SeatsCapUsage/SeatsCapUsage.tsx
  • apps/meteor/client/views/admin/users/UsersPageHeaderContent.tsx
  • apps/meteor/client/views/admin/users/UsersTable/UsersTable.tsx
  • apps/meteor/client/views/admin/users/UsersTable/UsersTableFilters.tsx
  • apps/meteor/client/views/admin/users/UsersTable/UsersTableRow.tsx
  • apps/meteor/client/views/admin/viewLogs/AnalyticsReports.tsx
  • apps/meteor/client/views/admin/workspace/DeploymentCard/DeploymentCard.tsx
  • apps/meteor/client/views/admin/workspace/DeploymentCard/components/InstancesModal/DescriptionList.tsx
  • apps/meteor/client/views/admin/workspace/DeploymentCard/components/InstancesModal/DescriptionListEntry.tsx
  • apps/meteor/client/views/admin/workspace/DeploymentCard/components/InstancesModal/InstancesModal.tsx
  • apps/meteor/client/views/admin/workspace/MessagesRoomsCard/MessagesRoomsCard.tsx
  • apps/meteor/client/views/admin/workspace/UsersUploadsCard/UsersUploadsCard.tsx
  • apps/meteor/client/views/admin/workspace/VersionCard/VersionCard.tsx
  • apps/meteor/client/views/admin/workspace/VersionCard/components/VersionCardActionButton.tsx
  • apps/meteor/client/views/admin/workspace/VersionCard/components/VersionCardActionItem.tsx
  • apps/meteor/client/views/admin/workspace/VersionCard/components/VersionCardSkeleton.tsx
  • apps/meteor/client/views/admin/workspace/VersionCard/components/VersionTag.tsx
  • apps/meteor/client/views/admin/workspace/VersionCard/modals/RegisterWorkspaceModal.tsx
  • apps/meteor/client/views/admin/workspace/VersionCard/modals/RegisterWorkspaceSetupModal/RegisterWorkspaceSetupModal.tsx
  • apps/meteor/client/views/admin/workspace/VersionCard/modals/RegisterWorkspaceSetupModal/RegisterWorkspaceSetupStepOneModal.tsx
  • apps/meteor/client/views/admin/workspace/VersionCard/modals/RegisterWorkspaceSetupModal/RegisterWorkspaceSetupStepTwoModal.tsx
  • apps/meteor/client/views/admin/workspace/VersionCard/modals/RegisterWorkspaceTokenModal.tsx
  • apps/meteor/client/views/admin/workspace/VersionCard/modals/RegisteredWorkspaceModal.tsx
  • apps/meteor/client/views/admin/workspace/WorkspacePage.tsx
  • apps/meteor/client/views/admin/workspace/components/WorkspaceCardSection.tsx
  • apps/meteor/client/views/admin/workspace/components/WorkspaceCardSectionTitle.tsx
  • apps/meteor/client/views/admin/workspace/components/WorkspaceCardTextSeparator.tsx
  • apps/meteor/client/views/audit/AuditPage.tsx
  • apps/meteor/client/views/audit/components/AppInfoField.tsx
  • apps/meteor/client/views/audit/components/AuditFiltersDisplay.tsx
  • apps/meteor/client/views/audit/components/AuditForm.tsx
  • apps/meteor/client/views/audit/components/AuditLogEntry.tsx
  • apps/meteor/client/views/audit/components/AuditMessageList.tsx
  • apps/meteor/client/views/audit/components/AuditModalField.tsx
  • apps/meteor/client/views/audit/components/AuditModalLabel.tsx
  • apps/meteor/client/views/audit/components/AuditModalText.tsx
  • apps/meteor/client/views/audit/components/AuditResult.tsx
  • apps/meteor/client/views/audit/components/SecurityLogDisplayModal.tsx
  • apps/meteor/client/views/audit/components/SecurityLogsTable.tsx
  • apps/meteor/client/views/audit/components/forms/DateRangePicker.tsx
  • apps/meteor/client/views/audit/components/forms/VisitorAutoComplete.tsx
  • apps/meteor/client/views/audit/components/tabs/DirectTab.tsx
  • apps/meteor/client/views/audit/components/tabs/OmnichannelTab.tsx
  • apps/meteor/client/views/audit/components/tabs/RoomsTab.tsx
  • apps/meteor/client/views/audit/components/tabs/UsersTab.tsx
  • apps/meteor/client/views/banners/LegacyBanner.tsx
  • apps/meteor/client/views/banners/UiKitBanner.tsx
  • apps/meteor/client/views/cloud/CloudAnnouncementHandler.tsx
  • apps/meteor/client/views/composer/AudioMessageRecorder/AudioMessageRecorder.tsx
  • apps/meteor/client/views/composer/EmojiPicker/CategoriesResult.tsx
  • apps/meteor/client/views/composer/EmojiPicker/EmojiCategoryRow.tsx
  • apps/meteor/client/views/composer/EmojiPicker/EmojiElement.tsx
  • apps/meteor/client/views/composer/EmojiPicker/EmojiPicker.tsx
  • apps/meteor/client/views/composer/EmojiPicker/EmojiPickerCategoryItem.tsx
  • apps/meteor/client/views/composer/EmojiPicker/EmojiPickerDesktopDropdown.tsx
  • apps/meteor/client/views/composer/EmojiPicker/SearchingResult.tsx
  • apps/meteor/client/views/composer/EmojiPicker/ToneSelector/ToneItem.tsx
  • apps/meteor/client/views/composer/EmojiPicker/ToneSelector/ToneSelector.tsx
  • apps/meteor/client/views/composer/EmojiPicker/ToneSelector/ToneSelectorWrapper.tsx
  • apps/meteor/client/views/composer/VideoMessageRecorder/VideoMessageRecorder.tsx
  • apps/meteor/client/views/directory/DirectoryPage.tsx
  • apps/meteor/client/views/directory/RoomTags.tsx
  • apps/meteor/client/views/directory/tabs/channels/ChannelsTable/ChannelsTable.tsx
  • apps/meteor/client/views/directory/tabs/channels/ChannelsTable/ChannelsTableRow.tsx
  • apps/meteor/client/views/directory/tabs/teams/TeamsTable/TeamsTable.tsx
  • apps/meteor/client/views/directory/tabs/teams/TeamsTable/TeamsTableRow.tsx
  • apps/meteor/client/views/directory/tabs/users/UsersTab.tsx
  • apps/meteor/client/views/directory/tabs/users/UsersTable/UsersTable.tsx
  • apps/meteor/client/views/directory/tabs/users/UsersTable/UsersTableRow.tsx
  • apps/meteor/client/views/e2e/EnterE2EPasswordModal/EnterE2EPasswordModal.spec.tsx
  • apps/meteor/client/views/e2e/EnterE2EPasswordModal/EnterE2EPasswordModal.tsx
  • apps/meteor/client/views/e2e/SaveE2EPasswordModal.tsx
  • apps/meteor/client/views/home/DefaultHomePage.tsx
  • apps/meteor/client/views/home/HomepageGridItem.tsx
  • apps/meteor/client/views/home/cards/CustomContentCard.tsx
  • apps/meteor/client/views/marketplace/AppDetailsPage/AppDetailsPage.tsx
  • apps/meteor/client/views/marketplace/AppDetailsPage/AppDetailsPageHeader.tsx
  • apps/meteor/client/views/marketplace/AppDetailsPage/AppDetailsPageLoading.tsx
  • apps/meteor/client/views/marketplace/AppDetailsPage/AppDetailsPageTabs.tsx
  • apps/meteor/client/views/marketplace/AppDetailsPage/tabs/AppDetails/AppDetails.tsx
  • apps/meteor/client/views/marketplace/AppDetailsPage/tabs/AppDetails/AppDetailsAPIs.tsx
  • apps/meteor/client/views/marketplace/AppDetailsPage/tabs/AppInstances/AppInstances.tsx
  • apps/meteor/client/views/marketplace/AppDetailsPage/tabs/AppLogs/AppLogs.tsx
  • apps/meteor/client/views/marketplace/AppDetailsPage/tabs/AppLogs/AppLogsItem.tsx
  • apps/meteor/client/views/marketplace/AppDetailsPage/tabs/AppLogs/AppLogsItemEntry.tsx
  • apps/meteor/client/views/marketplace/AppDetailsPage/tabs/AppLogs/AppLogsItemField.tsx
  • apps/meteor/client/views/marketplace/AppDetailsPage/tabs/AppLogs/Components/CollapseButton.tsx
  • apps/meteor/client/views/marketplace/AppDetailsPage/tabs/AppLogs/Components/CollapsiblePanel.tsx
  • apps/meteor/client/views/marketplace/AppDetailsPage/tabs/AppLogs/Components/CollapsibleRegion.tsx
  • apps/meteor/client/views/marketplace/AppDetailsPage/tabs/AppLogs/Filters/AppLogsFilter.stories.tsx
  • apps/meteor/client/views/marketplace/AppDetailsPage/tabs/AppLogs/Filters/AppLogsFilter.tsx
  • apps/meteor/client/views/marketplace/AppDetailsPage/tabs/AppLogs/Filters/AppLogsFilterContextualBar.tsx
  • apps/meteor/client/views/marketplace/AppDetailsPage/tabs/AppLogs/Filters/AppLogsFilterOptions.tsx
  • apps/meteor/client/views/marketplace/AppDetailsPage/tabs/AppLogs/Filters/CompactFilterOptions.tsx
  • apps/meteor/client/views/marketplace/AppDetailsPage/tabs/AppLogs/Filters/DateTimeFilter.tsx
  • apps/meteor/client/views/marketplace/AppDetailsPage/tabs/AppLogs/Filters/DateTimeModal.stories.tsx
  • apps/meteor/client/views/marketplace/AppDetailsPage/tabs/AppLogs/Filters/DateTimeModal.tsx
  • apps/meteor/client/views/marketplace/AppDetailsPage/tabs/AppLogs/Filters/EventFilterSelect.tsx
  • apps/meteor/client/views/marketplace/AppDetailsPage/tabs/AppLogs/Filters/ExportLogsModal.stories.tsx
  • apps/meteor/client/views/marketplace/AppDetailsPage/tabs/AppLogs/Filters/ExportLogsModal.tsx
  • apps/meteor/client/views/marketplace/AppDetailsPage/tabs/AppLogs/Filters/InstanceFilterSelect.tsx
  • apps/meteor/client/views/marketplace/AppDetailsPage/tabs/AppLogs/Filters/TimeFilterSelect.tsx
  • apps/meteor/client/views/marketplace/AppDetailsPage/tabs/AppReleases/AppReleases.tsx
  • apps/meteor/client/views/marketplace/AppDetailsPage/tabs/AppReleases/AppReleasesItem.tsx
  • apps/meteor/client/views/marketplace/AppDetailsPage/tabs/AppRequests/AppRequestItem.tsx
  • apps/meteor/client/views/marketplace/AppDetailsPage/tabs/AppRequests/AppRequests.tsx
  • apps/meteor/client/views/marketplace/AppDetailsPage/tabs/AppRequests/AppRequestsLoading.tsx
  • apps/meteor/client/views/marketplace/AppDetailsPage/tabs/AppSecurity/AppSecurity.tsx
  • apps/meteor/client/views/marketplace/AppDetailsPage/tabs/AppSecurity/AppSecurityLabel.tsx
  • apps/meteor/client/views/marketplace/AppDetailsPage/tabs/AppSettings/AppSettings.tsx
  • apps/meteor/client/views/marketplace/AppDetailsPage/tabs/AppStatus/AppStatus.tsx
  • apps/meteor/client/views/marketplace/AppDetailsPage/tabs/AppStatus/AppStatusPriceDisplay.tsx
  • apps/meteor/client/views/marketplace/AppExemptModal.tsx
  • apps/meteor/client/views/marketplace/AppInstallPage.tsx
  • apps/meteor/client/views/marketplace/AppMenu.tsx
  • apps/meteor/client/views/marketplace/AppPermissionsReviewModal.tsx
  • apps/meteor/client/views/marketplace/AppUpdateModal.tsx
  • apps/meteor/client/views/marketplace/AppsList/AddonChip.tsx
  • apps/meteor/client/views/marketplace/AppsList/AddonRequiredModal.tsx
  • apps/meteor/client/views/marketplace/AppsList/AppsList.tsx
  • apps/meteor/client/views/marketplace/AppsPage/AppsFilters.tsx
  • apps/meteor/client/views/marketplace/AppsPage/AppsPageConnectionError.tsx
  • apps/meteor/client/views/marketplace/AppsPage/AppsPageContentBody.tsx
  • apps/meteor/client/views/marketplace/AppsPage/AppsPageContentSkeleton.tsx
  • apps/meteor/client/views/marketplace/AppsPage/NoAppRequestsEmptyState.tsx
  • apps/meteor/client/views/marketplace/AppsPage/NoInstalledAppMatchesEmptyState.tsx
  • apps/meteor/client/views/marketplace/AppsPage/NoInstalledAppsEmptyState.tsx
  • apps/meteor/client/views/marketplace/AppsPage/NoMarketplaceOrInstalledAppMatchesEmptyState.tsx
  • apps/meteor/client/views/marketplace/AppsPage/PrivateEmptyState.tsx
  • apps/meteor/client/views/marketplace/AppsPage/UnsupportedEmptyState.tsx
  • apps/meteor/client/views/marketplace/BundleChips.tsx
  • apps/meteor/client/views/marketplace/IframeModal.tsx
  • apps/meteor/client/views/marketplace/MarketplaceRouter.tsx
  • apps/meteor/client/views/marketplace/components/AccordionLoading.tsx
  • apps/meteor/client/views/marketplace/components/AppPermissionsList.tsx
  • apps/meteor/client/views/marketplace/components/CategoryFilter/CategoryDropDown.stories.tsx
  • apps/meteor/client/views/marketplace/components/CategoryFilter/CategoryDropDown.tsx
  • apps/meteor/client/views/marketplace/components/CategoryFilter/CategoryDropDownAnchor.tsx
  • apps/meteor/client/views/marketplace/components/CategoryFilter/CategoryDropDownList.tsx
  • apps/meteor/client/views/marketplace/components/CategoryFilter/TagList.tsx
  • apps/meteor/client/views/marketplace/components/MarketplaceHeader.tsx
  • apps/meteor/client/views/marketplace/components/PrivateAppInstallModal/PrivateAppInstallModal.tsx
  • apps/meteor/client/views/marketplace/components/RadioButtonList.tsx
  • apps/meteor/client/views/marketplace/components/RadioDropDown/RadioDownAnchor.tsx
  • apps/meteor/client/views/marketplace/components/ScreenshotCarousel.tsx
  • apps/meteor/client/views/marketplace/components/ScreenshotCarouselAnchor.tsx
  • apps/meteor/client/views/marketplace/components/UninstallGrandfatheredAppModal/UninstallGrandfatheredAppModal.tsx
  • apps/meteor/client/views/marketplace/hooks/useAppMenu.tsx
  • apps/meteor/client/views/mediaCallHistory/CallHistoryPageFilters.tsx
  • apps/meteor/client/views/mediaCallHistory/CallHistoryPageLayout.tsx
  • apps/meteor/client/views/mediaCallHistory/CallHistoryRowExternalUser.tsx
  • apps/meteor/client/views/mediaCallHistory/CallHistoryRowInternalUser.tsx
  • apps/meteor/client/views/mediaCallHistory/CallHistoryRowUnknownUser.tsx
  • apps/meteor/client/views/mediaCallHistory/MediaCallHistoryContextualbar.tsx
  • apps/meteor/client/views/mediaCallHistory/MediaCallHistoryExternal.tsx
  • apps/meteor/client/views/mediaCallHistory/MediaCallHistoryInternal.tsx
  • apps/meteor/client/views/modal/uikit/UiKitModal.tsx
  • apps/meteor/client/views/navigation/providers/RoomsNavigationProvider.tsx
  • apps/meteor/client/views/navigation/sidebar/RoomList/OmnichannelFilters.tsx
  • apps/meteor/client/views/navigation/sidebar/RoomList/RoomListCollapser.tsx
  • apps/meteor/client/views/navigation/sidebar/RoomList/RoomListFiltersItemBadge.tsx
  • apps/meteor/client/views/navigation/sidebar/RoomList/RoomListRow.tsx
  • apps/meteor/client/views/navigation/sidebar/RoomList/RoomListRowWrapper.tsx
  • apps/meteor/client/views/navigation/sidebar/RoomList/RoomListWrapper.tsx
  • apps/meteor/client/views/navigation/sidebar/RoomList/SidebarItem.tsx
  • apps/meteor/client/views/navigation/sidebar/RoomList/SidebarItemWithData.tsx
  • apps/meteor/client/views/navigation/sidebar/RoomList/TeamCollabFilters.tsx
  • apps/meteor/client/views/navigation/sidebar/Sidebar.tsx
  • apps/meteor/client/views/navigation/sidebar/badges/SidebarItemBadges.tsx
  • apps/meteor/client/views/navigation/sidebar/badges/UnreadBadge.tsx
  • apps/meteor/client/views/navigation/sidepanel/SidePanelInternal.tsx
  • apps/meteor/client/views/navigation/sidepanel/SidePanelNoResults.tsx
  • apps/meteor/client/views/navigation/sidepanel/SidepanelItem/RoomMenu.tsx
  • apps/meteor/client/views/navigation/sidepanel/SidepanelItem/RoomSidePanelItem.tsx
  • apps/meteor/client/views/navigation/sidepanel/SidepanelItem/RoomSidePanelItemBadges.tsx
  • apps/meteor/client/views/navigation/sidepanel/SidepanelItem/SidePanelParent.tsx
  • apps/meteor/client/views/navigation/sidepanel/SidepanelItem/SidePanelParentRoom/SidePanelParentRoom.tsx
  • apps/meteor/client/views/navigation/sidepanel/SidepanelItem/SidePanelParentRoom/SidePanelParentRoomWithData.tsx
  • apps/meteor/client/views/navigation/sidepanel/SidepanelItem/SidePanelParentTeam.tsx
  • apps/meteor/client/views/navigation/sidepanel/SidepanelItem/SidePanelTagIcon.tsx
  • apps/meteor/client/views/navigation/sidepanel/SidepanelItem/SidepanelItem.tsx
  • apps/meteor/client/views/navigation/sidepanel/omnichannel/InquireSidePanelItem.tsx
  • apps/meteor/client/views/navigation/sidepanel/omnichannel/SidePanelOmnichannelBadges/SidePanelOmnichannelBadges.tsx
  • apps/meteor/client/views/navigation/sidepanel/omnichannel/SidePanelOmnichannelBadges/SidePanelPriorityTag.tsx
  • apps/meteor/client/views/navigation/sidepanel/tabs/SidePanelChannels.tsx
  • apps/meteor/client/views/navigation/sidepanel/tabs/SidePanelRooms.tsx
  • apps/meteor/client/views/navigation/sidepanel/tabs/SidePanelTeams.tsx
  • apps/meteor/client/views/notAuthorized/NotAuthorizedPage.tsx
  • apps/meteor/client/views/oauth/components/AuthorizationFormPage.tsx
  • apps/meteor/client/views/oauth/components/CurrentUserDisplay.tsx
  • apps/meteor/client/views/oauth/components/ErrorPage.tsx
  • apps/meteor/client/views/oauth/components/Layout.tsx
  • apps/meteor/client/views/omnichannel/OmnichannelRouter.tsx
  • apps/meteor/client/views/omnichannel/additionalForms/AutoCompleteUnit.tsx
  • apps/meteor/client/views/omnichannel/additionalForms/AutoCompleteUnits.tsx
  • apps/meteor/client/views/omnichannel/additionalForms/BusinessHoursMultiple.stories.tsx
  • apps/meteor/client/views/omnichannel/additionalForms/BusinessHoursMultiple.tsx
  • apps/meteor/client/views/omnichannel/additionalForms/ContactManagerInput.tsx
  • apps/meteor/client/views/omnichannel/additionalForms/CurrentChatTags.tsx
  • apps/meteor/client/views/omnichannel/additionalForms/CustomFieldsAdditionalForm.tsx
  • apps/meteor/client/views/omnichannel/additionalForms/DepartmentBusinessHours.tsx
  • apps/meteor/client/views/omnichannel/additionalForms/EeNumberInput.tsx
  • apps/meteor/client/views/omnichannel/additionalForms/EeTextAreaInput.tsx
  • apps/meteor/client/views/omnichannel/additionalForms/EeTextInput.tsx
  • apps/meteor/client/views/omnichannel/additionalForms/MaxChatsPerAgent.tsx
  • apps/meteor/client/views/omnichannel/additionalForms/PrioritiesSelect.tsx
  • apps/meteor/client/views/omnichannel/additionalForms/SlaPoliciesSelect.tsx
  • apps/meteor/client/views/omnichannel/agents/AgentEdit.tsx
  • apps/meteor/client/views/omnichannel/agents/AgentEditWithData.tsx
  • apps/meteor/client/views/omnichannel/agents/AgentInfo.tsx
  • apps/meteor/client/views/omnichannel/agents/AgentInfoAction.tsx
  • apps/meteor/client/views/omnichannel/agents/AgentsTable/AddAgent.tsx
  • apps/meteor/client/views/omnichannel/agents/AgentsTable/AgentsTable.tsx
  • apps/meteor/client/views/omnichannel/agents/AgentsTable/AgentsTableRow.tsx
  • apps/meteor/client/views/omnichannel/analytics/AnalyticsPage.tsx
  • apps/meteor/client/views/omnichannel/analytics/DateRangePicker.tsx
  • apps/meteor/client/views/omnichannel/analytics/InterchangeableChart.tsx
  • apps/meteor/client/views/omnichannel/analytics/Overview.tsx
  • apps/meteor/client/views/omnichannel/appearance/AppearanceFieldLabel.tsx
  • apps/meteor/client/views/omnichannel/appearance/AppearancePage.tsx
  • apps/meteor/client/views/omnichannel/businessHours/BusinessHoursForm.stories.tsx
  • apps/meteor/client/views/omnichannel/businessHours/BusinessHoursForm.tsx
  • apps/meteor/client/views/omnichannel/businessHours/BusinessHoursTable.stories.tsx
  • apps/meteor/client/views/omnichannel/businessHours/EditBusinessHours.tsx
  • apps/meteor/client/views/omnichannel/businessHours/EditBusinessHoursWithData.tsx
  • apps/meteor/client/views/omnichannel/cannedResponses/RemoveCannedResponseButton.tsx
  • apps/meteor/client/views/omnichannel/cannedResponses/components/CannedResponseForm.tsx
  • apps/meteor/client/views/omnichannel/cannedResponses/components/CannedResponsesComposer/CannedResponsesComposer.tsx
  • apps/meteor/client/views/omnichannel/cannedResponses/components/CannedResponsesComposer/CannedResponsesComposerPreview.tsx
  • apps/meteor/client/views/omnichannel/cannedResponses/components/CannedResponsesComposer/InsertPlaceholderDropdown.tsx
  • apps/meteor/client/views/omnichannel/cannedResponses/contextualBar/CannedResponse/CannedResponse.stories.tsx
  • apps/meteor/client/views/omnichannel/cannedResponses/contextualBar/CannedResponse/CannedResponse.tsx
  • apps/meteor/client/views/omnichannel/cannedResponses/contextualBar/CannedResponse/CannedResponseList.tsx
  • apps/meteor/client/views/omnichannel/cannedResponses/contextualBar/CannedResponse/Item.stories.tsx
  • apps/meteor/client/views/omnichannel/cannedResponses/contextualBar/CannedResponse/Item.tsx
  • apps/meteor/client/views/omnichannel/cannedResponses/contextualBar/CannedResponse/WrapCannedResponse.tsx
  • apps/meteor/client/views/omnichannel/cannedResponses/modals/CannedResponseEdit.tsx
  • apps/meteor/client/views/omnichannel/cannedResponses/modals/CannedResponseEditWithData.tsx
  • apps/meteor/client/views/omnichannel/cannedResponses/modals/CannedResponseEditWithDepartmentData.tsx
  • apps/meteor/client/views/omnichannel/cannedResponses/modals/CannedResponseFilter.tsx
  • apps/meteor/client/views/omnichannel/cannedResponses/modals/CannedResponsesTable.tsx
  • apps/meteor/client/views/omnichannel/cannedResponses/modals/CreateCannedResponse/CreateCannedResponseModal.tsx
  • apps/meteor/client/views/omnichannel/components/AgentInfoDetails.tsx
  • apps/meteor/client/views/omnichannel/components/AutoCompleteAgent.tsx
  • apps/meteor/client/views/omnichannel/components/AutoCompleteContact/AutoCompleteContact.tsx
  • apps/meteor/client/views/omnichannel/components/AutoCompleteDepartment.tsx
  • apps/meteor/client/views/omnichannel/components/AutoCompleteDepartmentMultiple.tsx
  • apps/meteor/client/views/omnichannel/components/AutoCompleteMonitors.tsx
  • apps/meteor/client/views/omnichannel/components/AutoCompleteMultipleAgent.tsx
  • apps/meteor/client/views/omnichannel/components/CustomField.tsx
  • apps/meteor/client/views/omnichannel/components/Field.tsx
  • apps/meteor/client/views/omnichannel/components/FormSkeleton.tsx
  • apps/meteor/client/views/omnichannel/components/Info.tsx
  • apps/meteor/client/views/omnichannel/components/Label.tsx
  • apps/meteor/client/views/omnichannel/components/OmnichannelBadges/OmnichannelBadges.tsx
  • apps/meteor/client/views/omnichannel/components/OmnichannelVerificationTag.tsx
  • apps/meteor/client/views/omnichannel/components/RoomActivityIcon.tsx
  • apps/meteor/client/views/omnichannel/components/Tags.tsx
  • apps/meteor/client/views/omnichannel/components/outboundMessage/components/AutoCompleteDepartmentAgent.tsx
  • apps/meteor/client/views/omnichannel/components/outboundMessage/components/AutoCompleteOutboundProvider.tsx
  • apps/meteor/client/views/omnichannel/components/outboundMessage/components/OutboundMessagePreview/OutboundMessagePreview.tsx
  • apps/meteor/client/views/omnichannel/components/outboundMessage/components/OutboundMessagePreview/PreviewItem.tsx
  • apps/meteor/client/views/omnichannel/components/outboundMessage/components/OutboundMessageWizard/OutboundMessageWizard.tsx
  • apps/meteor/client/views/omnichannel/components/outboundMessage/components/OutboundMessageWizard/components/OutboundMessageForm.tsx
  • apps/meteor/client/views/omnichannel/components/outboundMessage/components/OutboundMessageWizard/components/OutboundMessageWizardSkeleton.tsx
  • apps/meteor/client/views/omnichannel/components/outboundMessage/components/OutboundMessageWizard/components/RetryButton.tsx
  • apps/meteor/client/views/omnichannel/components/outboundMessage/components/OutboundMessageWizard/forms/MessageForm/MessageForm.tsx
  • apps/meteor/client/views/omnichannel/components/outboundMessage/components/OutboundMessageWizard/forms/MessageForm/components/TemplateField.tsx
  • apps/meteor/client/views/omnichannel/components/outboundMessage/components/OutboundMessageWizard/forms/MessageForm/components/TemplatePlaceholderField.tsx
  • apps/meteor/client/views/omnichannel/components/outboundMessage/components/OutboundMessageWizard/forms/MessageForm/components/TemplatePreviewField.tsx
  • apps/meteor/client/views/omnichannel/components/outboundMessage/components/OutboundMessageWizard/forms/RecipientForm/RecipientForm.tsx
  • apps/meteor/client/views/omnichannel/components/outboundMessage/components/OutboundMessageWizard/forms/RecipientForm/components/ChannelField.tsx
  • apps/meteor/client/views/omnichannel/components/outboundMessage/components/OutboundMessageWizard/forms/RecipientForm/components/ContactField.tsx
  • apps/meteor/client/views/omnichannel/components/outboundMessage/components/OutboundMessageWizard/forms/RecipientForm/components/RecipientField.tsx
  • apps/meteor/client/views/omnichannel/components/outboundMessage/components/OutboundMessageWizard/forms/RecipientForm/components/SenderField.tsx
  • apps/meteor/client/views/omnichannel/components/outboundMessage/components/OutboundMessageWizard/forms/RepliesForm/RepliesForm.tsx
  • apps/meteor/client/views/omnichannel/components/outboundMessage/components/OutboundMessageWizard/forms/RepliesForm/components/AgentField.tsx
  • apps/meteor/client/views/omnichannel/components/outboundMessage/components/OutboundMessageWizard/forms/RepliesForm/components/DepartmentField.tsx
  • apps/meteor/client/views/omnichannel/components/outboundMessage/components/OutboundMessageWizard/steps/MessageStep.spec.tsx
  • apps/meteor/client/views/omnichannel/components/outboundMessage/components/OutboundMessageWizard/steps/MessageStep.tsx
  • apps/meteor/client/views/omnichannel/components/outboundMessage/components/OutboundMessageWizard/steps/RecipientStep.spec.tsx
  • apps/meteor/client/views/omnichannel/components/outboundMessage/components/OutboundMessageWizard/steps/RecipientStep.tsx
  • apps/meteor/client/views/omnichannel/components/outboundMessage/components/OutboundMessageWizard/steps/RepliesStep.spec.tsx
  • apps/meteor/client/views/omnichannel/components/outboundMessage/components/OutboundMessageWizard/steps/RepliesStep.tsx
  • apps/meteor/client/views/omnichannel/components/outboundMessage/components/OutboundMessageWizard/steps/ReviewStep.tsx
  • apps/meteor/client/views/omnichannel/components/outboundMessage/components/RecipientSelect.tsx
  • apps/meteor/client/views/omnichannel/components/outboundMessage/components/SenderSelect.tsx
  • apps/meteor/client/views/omnichannel/components/outboundMessage/components/TemplatePlaceholderSelector/TemplatePlaceholderButton.tsx
  • apps/meteor/client/views/omnichannel/components/outboundMessage/components/TemplatePlaceholderSelector/TemplatePlaceholderInput.tsx
  • apps/meteor/client/views/omnichannel/components/outboundMessage/components/TemplatePlaceholderSelector/TemplatePlaceholderSelector.tsx
  • apps/meteor/client/views/omnichannel/components/outboundMessage/components/TemplatePreview.tsx
  • apps/meteor/client/views/omnichannel/components/outboundMessage/components/TemplateSelect.tsx
  • apps/meteor/client/views/omnichannel/components/outboundMessage/modals/OutboundMessageModal/OutboundMessageCloseConfirmationModal.tsx
  • apps/meteor/client/views/omnichannel/components/outboundMessage/modals/OutboundMessageModal/OutboundMessageModal.tsx
  • apps/meteor/client/views/omnichannel/components/outboundMessage/modals/OutboundMessageUpsellModal/OutboundMessageUpsellModal.tsx
  • apps/meteor/client/views/omnichannel/contactHistory/MessageList/ContactHistoryMessage.tsx
  • apps/meteor/client/views/omnichannel/contactHistory/MessageList/ContactHistoryMessagesList.tsx
  • apps/meteor/client/views/omnichannel/contactInfo/AdvancedContactModal.tsx
  • apps/meteor/client/views/omnichannel/contactInfo/ContactInfo/ContactInfo.tsx
  • apps/meteor/client/views/omnichannel/contactInfo/ContactInfo/ContactInfoWithData.tsx
  • apps/meteor/client/views/omnichannel/contactInfo/ContactInfo/ReviewContactModal.tsx
  • apps/meteor/client/views/omnichannel/contactInfo/EditContactInfo.tsx
  • apps/meteor/client/views/omnichannel/contactInfo/EditContactInfoWithData.tsx
  • apps/meteor/client/views/omnichannel/contactInfo/tabs/ContactInfoChannels/BlockChannelModal.tsx
  • apps/meteor/client/views/omnichannel/contactInfo/tabs/ContactInfoChannels/ContactInfoChannels.tsx
  • apps/meteor/client/views/omnichannel/contactInfo/tabs/ContactInfoChannels/ContactInfoChannelsItem.tsx
  • apps/meteor/client/views/omnichannel/contactInfo/tabs/ContactInfoDetails/ContactInfoDetails.tsx
  • apps/meteor/client/views/omnichannel/contactInfo/tabs/ContactInfoDetails/ContactInfoDetailsEntry.tsx
  • apps/meteor/client/views/omnichannel/contactInfo/tabs/ContactInfoDetails/ContactInfoOutboundMessageButton.tsx
  • apps/meteor/client/views/omnichannel/contactInfo/tabs/ContactInfoDetails/ContactInfoPhoneEntry.tsx
  • apps/meteor/client/views/omnichannel/contactInfo/tabs/ContactInfoDetails/ContactManagerInfo.tsx
  • apps/meteor/client/views/omnichannel/contactInfo/tabs/ContactInfoHistory/ContactInfoHistory.tsx
  • apps/meteor/client/views/omnichannel/contactInfo/tabs/ContactInfoHistory/ContactInfoHistoryItem.tsx
  • apps/meteor/client/views/omnichannel/contactInfo/tabs/ContactInfoHistory/ContactInfoHistoryMessages.tsx
  • apps/meteor/client/views/omnichannel/contactInfo/tabs/ContactInfoHistory/ContactInfoHistoryRouter.tsx
  • apps/meteor/client/views/omnichannel/customFields/CustomFieldsForm.stories.tsx
  • apps/meteor/client/views/omnichannel/customFields/CustomFieldsTable.tsx
  • apps/meteor/client/views/omnichannel/customFields/EditCustomFields.tsx
  • apps/meteor/client/views/omnichannel/departments/DepartmentAgentsTable/AddAgent.tsx
  • apps/meteor/client/views/omnichannel/departments/DepartmentAgentsTable/AgentAvatar.tsx
  • apps/meteor/client/views/omnichannel/departments/DepartmentAgentsTable/AgentRow.tsx
  • apps/meteor/client/views/omnichannel/departments/DepartmentAgentsTable/DepartmentAgentsTable.tsx
  • apps/meteor/client/views/omnichannel/departments/DepartmentTags.tsx
  • apps/meteor/client/views/omnichannel/departments/DepartmentsPage.tsx
  • apps/meteor/client/views/omnichannel/departments/DepartmentsTable/DepartmentItemMenu.tsx
  • apps/meteor/client/views/omnichannel/departments/DepartmentsTable/DepartmentsTable.tsx
  • apps/meteor/client/views/omnichannel/departments/DepartmentsTable/RemoveDepartmentModal.tsx
  • apps/meteor/client/views/omnichannel/departments/EditDepartment.tsx
  • apps/meteor/client/views/omnichannel/departments/EditDepartmentWithAllowedForwardData.tsx
  • apps/meteor/client/views/omnichannel/departments/EditDepartmentWithData.tsx
  • apps/meteor/client/views/omnichannel/departments/NewDepartment.tsx
  • apps/meteor/client/views/omnichannel/directory/OmnichannelDirectoryPage.tsx
  • apps/meteor/client/views/omnichannel/directory/chats/Chat.tsx
  • apps/meteor/client/views/omnichannel/directory/chats/ChatInfo/ChatInfo.tsx
  • apps/meteor/client/views/omnichannel/directory/chats/ChatInfo/DepartmentField.tsx
  • apps/meteor/client/views/omnichannel/directory/chats/ChatInfo/RoomEdit/RoomEdit.tsx
  • apps/meteor/client/views/omnichannel/directory/chats/ChatInfo/RoomEdit/RoomEditWithData.tsx
  • apps/meteor/client/views/omnichannel/directory/chats/ChatInfo/VisitorClientInfo.tsx
  • apps/meteor/client/views/omnichannel/directory/chats/ChatsFiltersContextualBar.tsx
  • apps/meteor/client/views/omnichannel/directory/chats/ChatsTable/ChatsTable.tsx
  • apps/meteor/client/views/omnichannel/directory/chats/ChatsTable/ChatsTableFilter.tsx
  • apps/meteor/client/views/omnichannel/directory/chats/ChatsTable/ChatsTableRow.tsx
  • apps/meteor/client/views/omnichannel/directory/chats/ChatsTable/RemoveChatButton.tsx
  • apps/meteor/client/views/omnichannel/directory/components/AgentField.tsx
  • apps/meteor/client/views/omnichannel/directory/components/ContactField.tsx
  • apps/meteor/client/views/omnichannel/directory/components/FormSkeleton.tsx
  • apps/meteor/client/views/omnichannel/directory/components/PriorityField.tsx
  • apps/meteor/client/views/omnichannel/directory/components/SlaField.tsx
  • apps/meteor/client/views/omnichannel/directory/components/SourceField.tsx
  • apps/meteor/client/views/omnichannel/directory/contacts/ContactItemMenu.tsx
  • apps/meteor/client/views/omnichannel/directory/contacts/ContactTable.tsx
  • apps/meteor/client/views/omnichannel/directory/contacts/ContactTableRow.tsx
  • apps/meteor/client/views/omnichannel/directory/contacts/RemoveContactModal.tsx
  • apps/meteor/client/views/omnichannel/directory/providers/ChatsProvider.tsx
  • apps/meteor/client/views/omnichannel/managers/AddManager.tsx
  • apps/meteor/client/views/omnichannel/managers/ManagersTable.tsx
  • apps/meteor/client/views/omnichannel/managers/RemoveManagerButton.tsx
  • apps/meteor/client/views/omnichannel/modals/CloseChatModal.tsx
  • apps/meteor/client/views/omnichannel/modals/EnterpriseDepartmentsModal.tsx
  • apps/meteor/client/views/omnichannel/modals/ForwardChatModal.tsx
  • apps/meteor/client/views/omnichannel/modals/ReturnChatQueueModal.tsx
  • apps/meteor/client/views/omnichannel/modals/TranscriptModal.tsx
  • apps/meteor/client/views/omnichannel/monitors/MonitorsTable.tsx
  • apps/meteor/client/views/omnichannel/priorities/PrioritiesPage.tsx
  • apps/meteor/client/views/omnichannel/priorities/PrioritiesResetModal.tsx
  • apps/meteor/client/views/omnichannel/priorities/PrioritiesTable.tsx
  • apps/meteor/client/views/omnichannel/priorities/PrioritiesTableRow.tsx
  • apps/meteor/client/views/omnichannel/priorities/PriorityEditFormWithData.tsx
  • apps/meteor/client/views/omnichannel/priorities/PriorityIcon.tsx
  • apps/meteor/client/views/omnichannel/priorities/PriorityList.tsx
  • apps/meteor/client/views/omnichannel/queueList/QueueListFilter.tsx
  • apps/meteor/client/views/omnichannel/queueList/QueueListTable.tsx
  • apps/meteor/client/views/omnichannel/realTimeMonitoring/RealTimeMonitoringPage.tsx
  • apps/meteor/client/views/omnichannel/realTimeMonitoring/charts/Chart.tsx
  • apps/meteor/client/views/omnichannel/realTimeMonitoring/charts/ChatDurationChart.tsx
  • apps/meteor/client/views/omnichannel/realTimeMonitoring/charts/ChatsChart.tsx
  • apps/meteor/client/views/omnichannel/realTimeMonitoring/charts/ChatsPerAgentChart.tsx
  • apps/meteor/client/views/omnichannel/realTimeMonitoring/charts/ChatsPerDepartmentChart.tsx
  • apps/meteor/client/views/omnichannel/realTimeMonitoring/charts/ResponseTimesChart.tsx
  • apps/meteor/client/views/omnichannel/realTimeMonitoring/counter/CounterContainer.tsx
  • apps/meteor/client/views/omnichannel/realTimeMonitoring/counter/CounterItem.tsx
  • apps/meteor/client/views/omnichannel/realTimeMonitoring/counter/CounterRow.tsx
  • apps/meteor/client/views/omnichannel/realTimeMonitoring/overviews/ChatsOverview.tsx
  • apps/meteor/client/views/omnichannel/realTimeMonitoring/overviews/ConversationOverview.tsx
  • apps/meteor/client/views/omnichannel/realTimeMonitoring/overviews/ProductivityOverview.tsx
  • apps/meteor/client/views/omnichannel/reports/ReportsPage.tsx
  • apps/meteor/client/views/omnichannel/reports/components/AgentsTable.tsx
  • apps/meteor/client/views/omnichannel/reports/components/BarChart.tsx
  • apps/meteor/client/views/omnichannel/reports/components/ReportCard.tsx
  • apps/meteor/client/views/omnichannel/reports/components/ReportCardContent.tsx
  • apps/meteor/client/views/omnichannel/reports/components/ReportCardErrorState.tsx
  • apps/meteor/client/views/omnichannel/reports/components/ReportCardLoadingState.tsx
  • apps/meteor/client/views/omnichannel/reports/sections/AgentsSection.tsx
  • apps/meteor/client/views/omnichannel/slaPolicies/SlaEdit.tsx
  • apps/meteor/client/views/omnichannel/slaPolicies/SlaEditWithData.tsx
  • apps/meteor/client/views/omnichannel/slaPolicies/SlaTable.tsx
  • apps/meteor/client/views/omnichannel/tags/AutoCompleteTagsMultiple.tsx
  • apps/meteor/client/views/omnichannel/tags/TagEdit.tsx
  • apps/meteor/client/views/omnichannel/tags/TagEditWithData.tsx
  • apps/meteor/client/views/omnichannel/tags/TagEditWithDepartmentData.tsx
  • apps/meteor/client/views/omnichannel/tags/TagsTable.tsx
  • apps/meteor/client/views/omnichannel/triggers/TriggersRow.tsx
  • apps/meteor/client/views/omnichannel/units/UnitEdit.tsx
  • apps/meteor/client/views/omnichannel/units/UnitEditWithData.tsx
  • apps/meteor/client/views/omnichannel/units/UnitTableRow.tsx
  • apps/meteor/client/views/omnichannel/units/UnitsTable.tsx
  • apps/meteor/client/views/omnichannel/webhooks/WebhooksPage.tsx
  • apps/meteor/client/views/outlookCalendar/OutlookCalendarEventModal.tsx
  • apps/meteor/client/views/outlookCalendar/OutlookEventsList/OutlookEventItem.tsx
  • apps/meteor/client/views/outlookCalendar/OutlookEventsList/OutlookEventsList.tsx
  • apps/meteor/client/views/outlookCalendar/OutlookSettingsList/OutlookSettingItem.tsx
  • apps/meteor/client/views/outlookCalendar/OutlookSettingsList/OutlookSettingsList.tsx
  • apps/meteor/client/views/room/E2EESetup/RoomE2EENotAllowed.tsx
  • apps/meteor/client/views/room/Header/FederatedRoomOriginServer.tsx
  • apps/meteor/client/views/room/Header/Header.tsx
  • apps/meteor/client/views/room/Header/HeaderIconWithRoom.tsx
  • apps/meteor/client/views/room/Header/Omnichannel/BackButton.tsx
  • apps/meteor/client/views/room/Header/Omnichannel/OmnichannelRoomHeaderTag.tsx
  • apps/meteor/client/views/room/Header/Omnichannel/QuickActions/QuickActionOptions.tsx
  • apps/meteor/client/views/room/Header/Omnichannel/QuickActions/QuickActions.tsx
  • apps/meteor/client/views/room/Header/ParentRoom/ParentDiscussion/ParentDiscussion.tsx
  • apps/meteor/client/views/room/Header/ParentRoom/ParentDiscussion/ParentDiscussionRoute.tsx
  • apps/meteor/client/views/room/Header/ParentRoom/ParentDiscussion/ParentDiscussionWithData.tsx
  • apps/meteor/client/views/room/Header/ParentRoom/ParentRoom.tsx
  • apps/meteor/client/views/room/Header/ParentRoom/ParentRoomButton.tsx
  • apps/meteor/client/views/room/Header/ParentRoom/ParentTeam.tsx
  • apps/meteor/client/views/room/Header/RoomMemberStatus.tsx
  • apps/meteor/client/views/room/Header/RoomTitle.tsx
  • apps/meteor/client/views/room/Header/RoomToolbox/RoomToolbox.tsx
  • apps/meteor/client/views/room/Header/RoomToolbox/RoomToolboxE2EESetup.tsx
  • apps/meteor/client/views/room/Header/RoomTopic.tsx
  • apps/meteor/client/views/room/Header/icons/Encrypted.tsx
  • apps/meteor/client/views/room/Header/icons/Favorite.tsx
  • apps/meteor/client/views/room/Header/icons/Translate.tsx
  • apps/meteor/client/views/room/MessageList/MessageList.tsx
  • apps/meteor/client/views/room/MessageList/MessageListErrorBoundary.tsx
  • apps/meteor/client/views/room/MessageList/MessageListItem.tsx
  • apps/meteor/client/views/room/MessageList/contexts/SelectedMessagesContext.tsx
  • apps/meteor/client/views/room/MessageList/hooks/useKeepMountedMessages.ts
  • apps/meteor/client/views/room/MessageList/providers/MessageHighlightProvider.tsx
  • apps/meteor/client/views/room/MessageList/providers/MessageListProvider.tsx
  • apps/meteor/client/views/room/NotSubscribedRoom.tsx
  • apps/meteor/client/views/room/RoomInvite.tsx
  • apps/meteor/client/views/room/RoomOpener.tsx
  • apps/meteor/client/views/room/RoomOpenerEmbedded.tsx
  • apps/meteor/client/views/room/RoomRoute.tsx
  • apps/meteor/client/views/room/ShareLocation/ShareLocationModal.tsx
  • apps/meteor/client/views/room/UserCard/UserCardWithData.tsx
  • apps/meteor/client/views/room/body/DropTargetOverlay.tsx
  • apps/meteor/client/views/room/body/JumpToRecentMessageButton.tsx
  • apps/meteor/client/views/room/body/MediaCallRoom.tsx
  • apps/meteor/client/views/room/body/RetentionPolicyWarning.tsx
  • apps/meteor/client/views/room/body/RoomBody.tsx
  • apps/meteor/client/views/room/body/RoomForeword/RoomForeword.tsx
  • apps/meteor/client/views/room/body/RoomForeword/RoomForewordUsernameList.tsx
  • apps/meteor/client/views/room/body/RoomForeword/RoomForewordUsernameListItem.tsx
  • apps/meteor/client/views/room/body/RoomInviteBody.tsx
  • apps/meteor/client/views/room/body/UnreadMessagesIndicator.tsx
  • apps/meteor/client/views/room/body/UploadProgress/UploadProgressIndicator.tsx
  • apps/meteor/client/views/room/composer/ComposerAirGappedRestricted.tsx
  • apps/meteor/client/views/room/composer/ComposerAnonymous.tsx
  • apps/meteor/client/views/room/composer/ComposerBoxPopup.tsx
  • apps/meteor/client/views/room/composer/ComposerBoxPopupCannedResponse.tsx
  • apps/meteor/client/views/room/composer/ComposerBoxPopupPreview.tsx
  • apps/meteor/client/views/room/composer/ComposerFederation/ComposerFederation.tsx
  • apps/meteor/client/views/room/composer/ComposerOmnichannel/ComposerOmnichannelCallout.tsx
  • apps/meteor/client/views/room/composer/ComposerUserActionIndicator/ComposerUserActionIndicator.tsx
  • apps/meteor/client/views/room/composer/messageBox/MessageBox.tsx
  • apps/meteor/client/views/room/composer/messageBox/MessageBoxActionsToolbar/MessageBoxActionsToolbar.tsx
  • apps/meteor/client/views/room/composer/messageBox/MessageBoxActionsToolbar/hooks/useCreateDiscussionAction.tsx
  • apps/meteor/client/views/room/composer/messageBox/MessageBoxActionsToolbar/hooks/useShareLocationAction.tsx
  • apps/meteor/client/views/room/composer/messageBox/MessageBoxActionsToolbar/hooks/useTimestampAction.tsx
  • apps/meteor/client/views/room/composer/messageBox/MessageBoxActionsToolbar/hooks/useWebdavActions.tsx
  • apps/meteor/client/views/room/composer/messageBox/MessageBoxFormattingToolbar/FormattingToolbarDropdown.tsx
  • apps/meteor/client/views/room/composer/messageBox/MessageBoxFormattingToolbar/MessageBoxFormattingToolbar.tsx
  • apps/meteor/client/views/room/composer/messageBox/MessageBoxHint.tsx
  • apps/meteor/client/views/room/composer/messageBox/MessageBoxReplies.tsx
  • apps/meteor/client/views/room/composer/messageBox/MessageBoxReply.tsx
  • apps/meteor/client/views/room/contextualBar/AutoTranslate/AutoTranslate.tsx
  • apps/meteor/client/views/room/contextualBar/BannedUsers/BannedUsers.tsx
  • apps/meteor/client/views/room/contextualBar/BannedUsers/BannedUsersItem.tsx
  • apps/meteor/client/views/room/contextualBar/Discussions/DiscussionsList.tsx
  • apps/meteor/client/views/room/contextualBar/Discussions/DiscussionsListRow.tsx
  • apps/meteor/client/views/room/contextualBar/Discussions/components/DiscussionsListItem.tsx
  • apps/meteor/client/views/room/contextualBar/ExportMessages/ExportMessages.tsx
  • apps/meteor/client/views/room/contextualBar/ExportMessages/useExportMessagesAsPDFMutation.tsx
  • apps/meteor/client/views/room/contextualBar/Info/ChannelToTeamModal/ChannelToTeamConfirmation.tsx
  • apps/meteor/client/views/room/contextualBar/Info/ChannelToTeamModal/ChannelToTeamModal.tsx
  • apps/meteor/client/views/room/contextualBar/Info/ChannelToTeamModal/ChannelToTeamSelection.tsx
  • apps/meteor/client/views/room/contextualBar/Info/EditRoomInfo/EditRoomInfo.tsx
  • apps/meteor/client/views/room/contextualBar/Info/RoomInfo/ABAC/RoomInfoABACSection.tsx
  • apps/meteor/client/views/room/contextualBar/Info/RoomInfo/RoomInfo.tsx
  • apps/meteor/client/views/room/contextualBar/Info/RoomInfoRouter.tsx
  • apps/meteor/client/views/room/contextualBar/MessageListTab.tsx
  • apps/meteor/client/views/room/contextualBar/MessageSearchTab/MessageSearchTab.tsx
  • apps/meteor/client/views/room/contextualBar/MessageSearchTab/components/MessageSearchForm.tsx
  • apps/meteor/client/views/room/contextualBar/NotificationPreferences/NotificationPreferences.tsx
  • apps/meteor/client/views/room/contextualBar/NotificationPreferences/NotificationPreferencesForm.tsx
  • apps/meteor/client/views/room/contextualBar/NotificationPreferences/components/NotificationByDevice.tsx
  • apps/meteor/client/views/room/contextualBar/NotificationPreferences/components/NotificationPreference.tsx
  • apps/meteor/client/views/room/contextualBar/NotificationPreferences/components/NotificationToggle.tsx
  • apps/meteor/client/views/room/contextualBar/PruneMessages/PruneMessages.tsx
  • apps/meteor/client/views/room/contextualBar/PruneMessages/PruneMessagesDateTimeRow.tsx
  • apps/meteor/client/views/room/contextualBar/RoomFiles/RoomFileItemWrapper.tsx
  • apps/meteor/client/views/room/contextualBar/RoomFiles/RoomFiles.tsx
  • apps/meteor/client/views/room/contextualBar/RoomFiles/components/FileItem.tsx
  • apps/meteor/client/views/room/contextualBar/RoomFiles/components/FileItemMenu.tsx
  • apps/meteor/client/views/room/contextualBar/RoomFiles/components/ImageItem.tsx
  • apps/meteor/client/views/room/contextualBar/RoomMembers/AddUsers/AddMatrixUsers/AddMatrixUsersModal.tsx
  • apps/meteor/client/views/room/contextualBar/RoomMembers/AddUsers/AddUsers.tsx
  • apps/meteor/client/views/room/contextualBar/RoomMembers/AddUsers/BannedUsersUnbanModal.tsx
  • apps/meteor/client/views/room/contextualBar/RoomMembers/InviteUsers/EditInviteLink.tsx
  • apps/meteor/client/views/room/contextualBar/RoomMembers/InviteUsers/InviteLink.tsx
  • apps/meteor/client/views/room/contextualBar/RoomMembers/InviteUsers/InviteUsers.tsx
  • apps/meteor/client/views/room/contextualBar/RoomMembers/InviteUsers/InviteUsersEdit.tsx
  • apps/meteor/client/views/room/contextualBar/RoomMembers/InviteUsers/InviteUsersLoading.tsx
  • apps/meteor/client/views/room/contextualBar/RoomMembers/InviteUsers/InviteUsersWithData.tsx
  • apps/meteor/client/views/room/contextualBar/RoomMembers/InviteUsers/InviteUsersWrapper.tsx
  • apps/meteor/client/views/room/contextualBar/RoomMembers/MembersListDivider.tsx
  • apps/meteor/client/views/room/contextualBar/RoomMembers/RoomMembers.tsx
  • apps/meteor/client/views/room/contextualBar/RoomMembers/RoomMembersActions.tsx
  • apps/meteor/client/views/room/contextualBar/RoomMembers/RoomMembersItem.spec.tsx
  • apps/meteor/client/views/room/contextualBar/RoomMembers/RoomMembersItem.tsx
  • apps/meteor/client/views/room/contextualBar/RoomMembers/RoomMembersListWrapper.tsx
  • apps/meteor/client/views/room/contextualBar/RoomMembers/RoomMembersRow.tsx
  • apps/meteor/client/views/room/contextualBar/RoomMembers/RoomMembersWithData.tsx
  • apps/meteor/client/views/room/contextualBar/RoomMembers/useMembersListNavigation.spec.ts
  • apps/meteor/client/views/room/contextualBar/RoomMembers/useMembersListNavigation.ts
  • apps/meteor/client/views/room/contextualBar/Threads/Thread.tsx
  • apps/meteor/client/views/room/contextualBar/Threads/ThreadList.tsx
  • apps/meteor/client/views/room/contextualBar/Threads/components/ThreadChat.tsx
  • apps/meteor/client/views/room/contextualBar/Threads/components/ThreadListItem.tsx
  • apps/meteor/client/views/room/contextualBar/Threads/components/ThreadListMessage.tsx
  • apps/meteor/client/views/room/contextualBar/Threads/components/ThreadMessageList.tsx
  • apps/meteor/client/views/room/contextualBar/Threads/components/ThreadSkeleton.tsx
  • apps/meteor/client/views/room/contextualBar/Threads/components/ThreadTitle.tsx
  • apps/meteor/client/views/room/contextualBar/UserInfo/ReportUserModal.tsx
  • apps/meteor/client/views/room/contextualBar/UserInfo/UserInfoActions.tsx
  • apps/meteor/client/views/room/contextualBar/UserInfo/UserInfoWithData.tsx
  • apps/meteor/client/views/room/contextualBar/VideoConference/VideoConfBlockModal.tsx
  • apps/meteor/client/views/room/contextualBar/VideoConference/VideoConfConfigModal.tsx
  • apps/meteor/client/views/room/contextualBar/VideoConference/VideoConfList/VideoConfList.tsx
  • apps/meteor/client/views/room/contextualBar/VideoConference/VideoConfList/VideoConfListItem.tsx
  • apps/meteor/client/views/room/contextualBar/VideoConference/VideoConfPopups/VideoConfPopup/IncomingPopup.tsx
  • apps/meteor/client/views/room/contextualBar/VideoConference/VideoConfPopups/VideoConfPopup/OutgoingPopup.tsx
  • apps/meteor/client/views/room/contextualBar/VideoConference/VideoConfPopups/VideoConfPopup/StartCallPopup.tsx
  • apps/meteor/client/views/room/contextualBar/VideoConference/VideoConfPopups/VideoConfPopup/TimedVideoConfPopup.tsx
  • apps/meteor/client/views/room/contextualBar/VideoConference/VideoConfPopups/VideoConfPopup/VideoConfPopupRoomInfo.tsx
  • apps/meteor/client/views/room/contextualBar/VideoConference/VideoConfPopups/VideoConfPopups.tsx
  • apps/meteor/client/views/room/contextualBar/uikit/UiKitContextualBar.tsx
  • apps/meteor/client/views/room/layout/RoomLayout.tsx
  • apps/meteor/client/views/room/modals/E2EEModals/BaseDisableE2EEModal.tsx
  • apps/meteor/client/views/room/modals/E2EEModals/DisableE2EEModal.tsx
  • apps/meteor/client/views/room/modals/E2EEModals/EnableE2EEModal.tsx
  • apps/meteor/client/views/room/modals/E2EEModals/ResetKeysE2EEModal.tsx
  • apps/meteor/client/views/room/modals/FileUploadModal/FilePreview.tsx
  • apps/meteor/client/views/room/modals/FileUploadModal/FileUploadModal.tsx
  • apps/meteor/client/views/room/modals/FileUploadModal/GenericPreview.tsx
  • apps/meteor/client/views/room/modals/FileUploadModal/ImagePreview.tsx
  • apps/meteor/client/views/room/modals/FileUploadModal/MediaPreview.tsx
  • apps/meteor/client/views/room/modals/FileUploadModal/PreviewSkeleton.tsx
  • apps/meteor/client/views/room/modals/PinMessageModal/PinMessageModal.tsx
  • apps/meteor/client/views/room/modals/ReactionListModal/ReactionListModal.tsx
  • apps/meteor/client/views/room/modals/ReactionListModal/ReactionUserTag.tsx
  • apps/meteor/client/views/room/modals/ReactionListModal/Reactions.tsx
  • apps/meteor/client/views/room/modals/ReadReceiptsModal/ReadReceiptRow.tsx
  • apps/meteor/client/views/room/modals/ReadReceiptsModal/ReadReceiptsModal.spec.tsx
  • apps/meteor/client/views/room/modals/ReadReceiptsModal/ReadReceiptsModal.stories.tsx
  • apps/meteor/client/views/room/modals/ReadReceiptsModal/ReadReceiptsModal.tsx
  • apps/meteor/client/views/room/modals/ReportMessageModal/ReportMessageModal.tsx
  • apps/meteor/client/views/room/providers/ChatProvider.tsx
  • apps/meteor/client/views/room/providers/ComposerPopupProvider.tsx
  • apps/meteor/client/views/room/providers/DateListProvider.tsx
  • apps/meteor/client/views/room/providers/RoomProvider.tsx
  • apps/meteor/client/views/room/providers/RoomToolboxProvider.tsx
  • apps/meteor/client/views/room/providers/SelectedMessagesProvider.tsx
  • apps/meteor/client/views/room/providers/UserCardProvider.tsx
  • apps/meteor/client/views/room/webdav/AddWebdavAccountModal.tsx
  • apps/meteor/client/views/room/webdav/SaveToWebdavModal.tsx
  • apps/meteor/client/views/room/webdav/WebdavFilePickerModal/FilePickerBreadcrumbs.tsx
  • apps/meteor/client/views/room/webdav/WebdavFilePickerModal/WebdavFilePickerGrid/WebdavFilePickerGrid.tsx
  • apps/meteor/client/views/room/webdav/WebdavFilePickerModal/WebdavFilePickerGrid/WebdavFilePickerGridItem.tsx
  • apps/meteor/client/views/room/webdav/WebdavFilePickerModal/WebdavFilePickerGrid/index.ts
  • apps/meteor/client/views/room/webdav/WebdavFilePickerModal/WebdavFilePickerModal.tsx
  • apps/meteor/client/views/room/webdav/WebdavFilePickerModal/WebdavFilePickerTable.tsx
  • apps/meteor/client/views/room/webdav/WebdavFilePickerModal/index.ts
  • apps/meteor/client/views/room/webdav/WebdavFilePickerModal/lib/getNodeFileSize.ts
  • apps/meteor/client/views/room/webdav/WebdavFilePickerModal/lib/getNodeIconType.spec.ts
  • apps/meteor/client/views/room/webdav/WebdavFilePickerModal/lib/getNodeIconType.ts
  • apps/meteor/client/views/room/webdav/WebdavFilePickerModal/lib/sortWebdavNodes.ts
  • apps/meteor/client/views/root/AppErrorPage.tsx
  • apps/meteor/client/views/root/AppLayout.tsx
  • apps/meteor/client/views/root/DocumentTitleWrapper.tsx
  • apps/meteor/client/views/root/MainLayout/AuthenticationCheck.tsx
  • apps/meteor/client/views/root/MainLayout/EmbeddedPreload.tsx
  • apps/meteor/client/views/root/MainLayout/LayoutWithSidebar.tsx
  • apps/meteor/client/views/root/MainLayout/LoggedInArea.tsx
  • apps/meteor/client/views/root/MainLayout/LoginPage.tsx
  • apps/meteor/client/views/root/MainLayout/MainLayout.tsx
  • apps/meteor/client/views/root/MainLayout/MainLayoutStyleTags.tsx
  • apps/meteor/client/views/root/MainLayout/PasswordChangeCheck.tsx
  • apps/meteor/client/views/root/MainLayout/Preload.tsx
  • apps/meteor/client/views/root/MainLayout/RegisterUsername.tsx
  • apps/meteor/client/views/root/MainLayout/TwoFactorAuthSetupCheck.tsx
  • apps/meteor/client/views/root/MainLayout/UsernameCheck.tsx
  • apps/meteor/client/views/root/OutermostErrorBoundary.tsx
  • apps/meteor/client/views/root/hooks/useDesktopUserRoles.ts
  • apps/meteor/client/views/root/hooks/useEmojiOne.ts
  • apps/meteor/client/views/root/hooks/useIframeCommands.ts
  • apps/meteor/client/views/root/hooks/useLoginOtherClients.ts
  • apps/meteor/client/views/root/hooks/useNativeEmoji.ts
  • apps/meteor/client/views/root/hooks/useOAuthLogin.ts
  • apps/meteor/client/views/root/hooks/useShareSessionWithOtherClients.ts
  • apps/meteor/client/views/search/SearchAnswerPanel.spec.tsx
  • apps/meteor/client/views/search/SearchAnswerPanel.tsx
  • apps/meteor/client/views/search/SearchPage.tsx
  • apps/meteor/client/views/search/SearchSourceResult.spec.tsx
  • apps/meteor/client/views/search/SearchSourceResult.tsx
  • apps/meteor/client/views/search/hooks/useAISearchAnswer.ts
  • apps/meteor/client/views/search/hooks/useAISearchResults.ts
  • apps/meteor/client/views/teams/ChannelDesertionTable/ChannelDesertionTable.tsx
  • apps/meteor/client/views/teams/ChannelDesertionTable/ChannelDesertionTableRow.tsx
  • apps/meteor/client/views/teams/contextualBar/TeamAutocomplete/TeamAutocomplete.tsx
  • apps/meteor/client/views/teams/contextualBar/channels/AddExistingModal/AddExistingModal.tsx
  • apps/meteor/client/views/teams/contextualBar/channels/AddExistingModal/RoomsAvailableForTeamsAutoComplete.tsx
  • apps/meteor/client/views/teams/contextualBar/channels/TeamsChannelItem.tsx
  • apps/meteor/client/views/teams/contextualBar/channels/TeamsChannels.tsx
  • apps/meteor/client/views/teams/contextualBar/info/ConvertToChannelModal/BaseConvertToChannelModal.tsx
  • apps/meteor/client/views/teams/contextualBar/info/ConvertToChannelModal/ConvertToChannelModal.tsx
  • apps/meteor/client/views/teams/contextualBar/info/ConvertToChannelModal/ModalSteps/FirstStep.tsx
  • apps/meteor/client/views/teams/contextualBar/info/DeleteTeam/ChannelDeletionTable/ChannelDeletionTable.tsx
  • apps/meteor/client/views/teams/contextualBar/info/DeleteTeam/ChannelDeletionTable/ChannelDeletionTableRow.tsx
  • apps/meteor/client/views/teams/contextualBar/info/DeleteTeam/DeleteTeamChannels.tsx
  • apps/meteor/client/views/teams/contextualBar/info/DeleteTeam/DeleteTeamConfirmation.tsx
  • apps/meteor/client/views/teams/contextualBar/info/DeleteTeam/DeleteTeamModal.tsx
  • apps/meteor/client/views/teams/contextualBar/info/DeleteTeam/DeleteTeamModalWithRooms.tsx
  • apps/meteor/client/views/teams/contextualBar/info/DeleteTeam/RoomLinkList.tsx
  • apps/meteor/client/views/teams/contextualBar/info/LeaveTeam/LeaveTeamModal/LeaveTeamModal.tsx
  • apps/meteor/client/views/teams/contextualBar/info/LeaveTeam/LeaveTeamModal/LeaveTeamModalChannels.tsx
  • apps/meteor/client/views/teams/contextualBar/info/LeaveTeam/LeaveTeamModal/LeaveTeamModalConfirmation.tsx
  • apps/meteor/client/views/teams/contextualBar/info/LeaveTeam/LeaveTeamWithData.tsx
  • apps/meteor/client/views/teams/contextualBar/info/TeamsInfo.tsx
  • apps/meteor/client/views/teams/contextualBar/members/RemoveUsersModal/BaseRemoveUsersModal.tsx
  • apps/meteor/client/views/teams/contextualBar/members/RemoveUsersModal/RemoveUsersFirstStep.tsx
  • apps/meteor/client/views/teams/contextualBar/members/RemoveUsersModal/RemoveUsersModal.tsx
  • apps/meteor/client/views/teams/contextualBar/members/RemoveUsersModal/RemoveUsersSecondStep.tsx
  • apps/meteor/definition/externals/emojione.d.ts
  • apps/meteor/definition/externals/express-session.d.ts
  • apps/meteor/definition/externals/express.d.ts
  • apps/meteor/definition/externals/global.d.ts
  • apps/meteor/definition/externals/meteor/accounts-base.d.ts
  • apps/meteor/definition/externals/meteor/meteor.d.ts
  • apps/meteor/ee/app/api-enterprise/server/index.ts
  • apps/meteor/ee/app/api-enterprise/server/middlewares/license.ts
  • apps/meteor/ee/app/authorization/lib/addRoleRestrictions.ts
  • apps/meteor/ee/app/authorization/server/index.ts
  • apps/meteor/ee/app/canned-responses/server/index.ts
  • apps/meteor/ee/app/canned-responses/server/settings.ts
  • apps/meteor/ee/app/license/server/index.ts
  • apps/meteor/ee/app/license/server/methods.ts
  • apps/meteor/ee/app/license/server/settings.ts
  • apps/meteor/ee/app/license/server/startup.ts
  • apps/meteor/ee/app/livechat-enterprise/server/api/contacts.ts
  • apps/meteor/ee/app/livechat-enterprise/server/api/departments.ts
  • apps/meteor/ee/app/livechat-enterprise/server/api/inquiries.ts
  • apps/meteor/ee/app/livechat-enterprise/server/api/lib/contacts.ts
  • apps/meteor/ee/app/livechat-enterprise/server/api/lib/departments.ts
  • apps/meteor/ee/app/livechat-enterprise/server/api/lib/outbound.ts
  • apps/meteor/ee/app/livechat-enterprise/server/api/lib/priorities.ts
  • apps/meteor/ee/app/livechat-enterprise/server/api/lib/sla.ts
  • apps/meteor/ee/app/livechat-enterprise/server/api/lib/tags.ts
  • apps/meteor/ee/app/livechat-enterprise/server/api/outbound.ts
  • apps/meteor/ee/app/livechat-enterprise/server/api/priorities.ts
  • apps/meteor/ee/app/livechat-enterprise/server/api/rooms.ts
  • apps/meteor/ee/app/livechat-enterprise/server/api/sla.ts
  • apps/meteor/ee/app/livechat-enterprise/server/api/tags.ts
  • apps/meteor/ee/app/livechat-enterprise/server/api/transcript.ts
  • apps/meteor/ee/app/livechat-enterprise/server/api/triggers.ts
  • apps/meteor/ee/app/livechat-enterprise/server/business-hour/Custom.ts
  • apps/meteor/ee/app/livechat-enterprise/server/business-hour/Helper.ts
  • apps/meteor/ee/app/livechat-enterprise/server/hooks/afterOnHoldChatResumed.ts
  • apps/meteor/ee/app/livechat-enterprise/server/hooks/afterTakeInquiry.ts
  • apps/meteor/ee/app/livechat-enterprise/server/hooks/onBusinessHourStart.ts
  • apps/meteor/ee/app/livechat-enterprise/server/hooks/onCheckRoomParamsApi.ts
  • apps/meteor/ee/app/livechat-enterprise/server/index.ts
  • apps/meteor/ee/app/livechat-enterprise/server/lib/Helper.ts
  • apps/meteor/ee/app/livechat-enterprise/server/methods/removeBusinessHour.ts
  • apps/meteor/ee/app/livechat-enterprise/server/outboundcomms/rest.ts
  • apps/meteor/ee/app/livechat-enterprise/server/settings.ts
  • apps/meteor/ee/app/livechat-enterprise/server/startup.ts
  • apps/meteor/ee/app/message-read-receipt/server/hooks/afterReadMessages.ts
  • apps/meteor/ee/app/message-read-receipt/server/hooks/afterSaveMessage.ts
  • apps/meteor/ee/app/message-read-receipt/server/hooks/index.ts
  • apps/meteor/ee/app/message-read-receipt/server/index.ts
  • apps/meteor/ee/app/settings/server/settings.ts
  • apps/meteor/ee/server/api/abac/index.ts
  • apps/meteor/ee/server/api/api.ts
  • apps/meteor/ee/server/api/audit.ts
  • apps/meteor/ee/server/api/chat.ts
  • apps/meteor/ee/server/api/engagementDashboard/channels.ts
  • apps/meteor/ee/server/api/engagementDashboard/messages.ts
  • apps/meteor/ee/server/api/engagementDashboard/users.ts
  • apps/meteor/ee/server/api/federation.ts
  • apps/meteor/ee/server/api/ldap.ts
  • apps/meteor/ee/server/api/lib/canned-responses.js
  • apps/meteor/ee/server/api/licenses.ts
  • apps/meteor/ee/server/api/roles.ts
  • apps/meteor/ee/server/api/sessions.ts
  • apps/meteor/ee/server/api/v1/canned-responses.ts
  • apps/meteor/ee/server/api/v1/middlewares/license.ts
  • apps/meteor/ee/server/api/v1/omnichannel/agents.ts
  • apps/meteor/ee/server/api/v1/omnichannel/business-hours.ts
  • apps/meteor/ee/server/api/v1/omnichannel/contacts.ts
  • apps/meteor/ee/server/api/v1/omnichannel/departments.ts
  • apps/meteor/ee/server/api/v1/omnichannel/index.ts
  • apps/meteor/ee/server/api/v1/omnichannel/inquiries.ts
  • apps/meteor/ee/server/api/v1/omnichannel/lib/contacts.ts
  • apps/meteor/ee/server/api/v1/omnichannel/lib/dashboards.ts
  • apps/meteor/ee/server/api/v1/omnichannel/lib/definition.ts
  • apps/meteor/ee/server/api/v1/omnichannel/lib/departments.ts
  • apps/meteor/ee/server/api/v1/omnichannel/lib/inquiries.ts
  • apps/meteor/ee/server/api/v1/omnichannel/lib/monitors.ts
  • apps/meteor/ee/server/api/v1/omnichannel/lib/outbound.ts
  • apps/meteor/ee/server/api/v1/omnichannel/lib/priorities.ts
  • apps/meteor/ee/server/api/v1/omnichannel/lib/sla.ts
  • apps/meteor/ee/server/api/v1/omnichannel/lib/tags.ts
  • apps/meteor/ee/server/api/v1/omnichannel/lib/triggers.ts
  • apps/meteor/ee/server/api/v1/omnichannel/lib/units.ts
  • apps/meteor/ee/server/api/v1/omnichannel/monitors.ts
  • apps/meteor/ee/server/api/v1/omnichannel/outbound.ts
  • apps/meteor/ee/server/api/v1/omnichannel/priorities.ts
  • apps/meteor/ee/server/api/v1/omnichannel/reports.ts
  • apps/meteor/ee/server/api/v1/omnichannel/rooms.ts
  • apps/meteor/ee/server/api/v1/omnichannel/sla.ts
  • apps/meteor/ee/server/api/v1/omnichannel/tags.ts
  • apps/meteor/ee/server/api/v1/omnichannel/transcript.ts
  • apps/meteor/ee/server/api/v1/omnichannel/triggers.ts
  • apps/meteor/ee/server/api/v1/omnichannel/units.ts
  • apps/meteor/ee/server/apps/appRequestsCron.ts
  • apps/meteor/ee/server/apps/communication/endpoints/actionButtonsHandler.ts
  • apps/meteor/ee/server/apps/communication/endpoints/appGeneralLogsHandler.ts
  • apps/meteor/ee/server/apps/communication/endpoints/appLogsExportHandler.ts
  • apps/meteor/ee/server/apps/communication/endpoints/appLogsHandler.ts
  • apps/meteor/ee/server/apps/communication/endpoints/appsCountHandler.ts
  • apps/meteor/ee/server/apps/communication/rest.ts
  • apps/meteor/ee/server/apps/communication/uikit.ts
  • apps/meteor/ee/server/apps/communication/websockets.ts
  • apps/meteor/ee/server/apps/cron.ts
  • apps/meteor/ee/server/apps/marketplace/MarketplaceAPIClient.ts
  • apps/meteor/ee/server/apps/marketplace/appInstall.ts
  • apps/meteor/ee/server/apps/marketplace/appRequestNotifyUsers.ts
  • apps/meteor/ee/server/apps/marketplace/fetchMarketplaceApps.ts
  • apps/meteor/ee/server/apps/marketplace/fetchMarketplaceCategories.ts
  • apps/meteor/ee/server/apps/orchestrator.js
  • apps/meteor/ee/server/apps/startup.ts
  • apps/meteor/ee/server/configuration/abac.ts
  • apps/meteor/ee/server/configuration/ldap.ts
  • apps/meteor/ee/server/configuration/oauth.ts
  • apps/meteor/ee/server/configuration/saml.ts
  • apps/meteor/ee/server/cron/readReceiptsArchive.spec.ts
  • apps/meteor/ee/server/cron/readReceiptsArchive.ts
  • apps/meteor/ee/server/hooks/abac/beforeAddUserToRoom.ts
  • apps/meteor/ee/server/hooks/abac/scopeAdminRoomsForAbac.ts
  • apps/meteor/ee/server/hooks/auth/callback.ts
  • apps/meteor/ee/server/hooks/canned-responses/cannedResponses.ts
  • apps/meteor/ee/server/hooks/canned-responses/onRemoveAgentDepartment.ts
  • apps/meteor/ee/server/hooks/canned-responses/onSaveAgentDepartment.ts
  • apps/meteor/ee/server/hooks/federation/index.ts
  • apps/meteor/ee/server/hooks/messages/afterDeleteRoom.ts
  • apps/meteor/ee/server/hooks/messages/afterReadMessages.ts
  • apps/meteor/ee/server/hooks/messages/afterSaveMessage.ts
  • apps/meteor/ee/server/hooks/omnichannel/addDepartmentAncestors.ts
  • apps/meteor/ee/server/hooks/omnichannel/afterForwardChatToAgent.ts
  • apps/meteor/ee/server/hooks/omnichannel/afterForwardChatToDepartment.ts
  • apps/meteor/ee/server/hooks/omnichannel/afterInquiryQueued.ts
  • apps/meteor/ee/server/hooks/omnichannel/afterOnHold.ts
  • apps/meteor/ee/server/hooks/omnichannel/afterOnHoldChatResumed.ts
  • apps/meteor/ee/server/hooks/omnichannel/afterRemoveDepartment.ts
  • apps/meteor/ee/server/hooks/omnichannel/afterReturnRoomAsInquiry.ts
  • apps/meteor/ee/server/hooks/omnichannel/afterTagRemoved.ts
  • apps/meteor/ee/server/hooks/omnichannel/afterTakeInquiry.ts
  • apps/meteor/ee/server/hooks/omnichannel/applyRoomRestrictions.ts
  • apps/meteor/ee/server/hooks/omnichannel/applySimultaneousChatsRestrictions.ts
  • apps/meteor/ee/server/hooks/omnichannel/beforeForwardRoomToDepartment.ts
  • apps/meteor/ee/server/hooks/omnichannel/beforeJoinRoom.ts
  • apps/meteor/ee/server/hooks/omnichannel/beforeListTags.ts
  • apps/meteor/ee/server/hooks/omnichannel/beforeNewInquiry.ts
  • apps/meteor/ee/server/hooks/omnichannel/beforeNewRoom.ts
  • apps/meteor/ee/server/hooks/omnichannel/beforeRoutingChat.ts
  • apps/meteor/ee/server/hooks/omnichannel/checkAgentBeforeTakeInquiry.ts
  • apps/meteor/ee/server/hooks/omnichannel/handleNextAgentPreferredEvents.ts
  • apps/meteor/ee/server/hooks/omnichannel/index.ts
  • apps/meteor/ee/server/hooks/omnichannel/manageDepartmentUnit.ts
  • apps/meteor/ee/server/hooks/omnichannel/onAgentAssignmentFailed.ts
  • apps/meteor/ee/server/hooks/omnichannel/onBusinessHourStart.ts
  • apps/meteor/ee/server/hooks/omnichannel/onCheckRoomParamsApi.ts
  • apps/meteor/ee/server/hooks/omnichannel/onCloseLivechat.ts
  • apps/meteor/ee/server/hooks/omnichannel/onLoadConfigApi.ts
  • apps/meteor/ee/server/hooks/omnichannel/onLoadForwardDepartmentRestrictions.ts
  • apps/meteor/ee/server/hooks/omnichannel/onSaveVisitorInfo.ts
  • apps/meteor/ee/server/hooks/omnichannel/onTransferFailure.ts
  • apps/meteor/ee/server/hooks/omnichannel/resumeOnHold.ts
  • apps/meteor/ee/server/hooks/omnichannel/scheduleAutoTransfer.ts
  • apps/meteor/ee/server/hooks/omnichannel/sendPdfTranscriptOnClose.ts
  • apps/meteor/ee/server/hooks/omnichannel/setPredictedVisitorAbandonmentTime.ts
  • apps/meteor/ee/server/index.ts
  • apps/meteor/ee/server/lib/audit/methods.ts
  • apps/meteor/ee/server/lib/authorization/guestPermissions.ts
  • apps/meteor/ee/server/lib/authorization/resetEnterprisePermissions.ts
  • apps/meteor/ee/server/lib/authorization/validateUserRoles.spec.ts
  • apps/meteor/ee/server/lib/authorization/validateUserRoles.ts
  • apps/meteor/ee/server/lib/canned-responses/index.ts
  • apps/meteor/ee/server/lib/canned-responses/permissions.ts
  • apps/meteor/ee/server/lib/canned-responses/settings.ts
  • apps/meteor/ee/server/lib/deviceManagement/session.ts
  • apps/meteor/ee/server/lib/deviceManagement/startup.ts
  • apps/meteor/ee/server/lib/engagementDashboard/messages.ts
  • apps/meteor/ee/server/lib/engagementDashboard/users.ts
  • apps/meteor/ee/server/lib/ldap/Manager.spec.ts
  • apps/meteor/ee/server/lib/ldap/Manager.ts
  • apps/meteor/ee/server/lib/ldap/copyCustomFieldsLDAP.ts
  • apps/meteor/ee/server/lib/license/airGappedRestrictions.ts
  • apps/meteor/ee/server/lib/license/canEnableApp.ts
  • apps/meteor/ee/server/lib/license/enforceFipsLicense.ts
  • apps/meteor/ee/server/lib/license/getSeatsRequestLink.ts
  • apps/meteor/ee/server/lib/license/lib/getAppCount.ts
  • apps/meteor/ee/server/lib/license/license.internalService.ts
  • apps/meteor/ee/server/lib/license/settings.ts
  • apps/meteor/ee/server/lib/license/startup.ts
  • apps/meteor/ee/server/lib/message-read-receipt/ReadReceipt.ts
  • apps/meteor/ee/server/lib/message-read-receipt/index.ts
  • apps/meteor/ee/server/lib/oauth/Manager.ts
  • apps/meteor/ee/server/lib/omnichannel/AutoCloseOnHoldScheduler.ts
  • apps/meteor/ee/server/lib/omnichannel/AutoTransferChatScheduler.ts
  • apps/meteor/ee/server/lib/omnichannel/Department.ts
  • apps/meteor/ee/server/lib/omnichannel/Helper.ts
  • apps/meteor/ee/server/lib/omnichannel/LivechatEnterprise.ts
  • apps/meteor/ee/server/lib/omnichannel/QueueInactivityMonitor.ts
  • apps/meteor/ee/server/lib/omnichannel/SlaHelper.ts
  • apps/meteor/ee/server/lib/omnichannel/VisitorInactivityMonitor.ts
  • apps/meteor/ee/server/lib/omnichannel/business-hour/Custom.ts
  • apps/meteor/ee/server/lib/omnichannel/business-hour/Helper.ts
  • apps/meteor/ee/server/lib/omnichannel/business-hour/Multiple.ts
  • apps/meteor/ee/server/lib/omnichannel/business-hour/index.ts
  • apps/meteor/ee/server/lib/omnichannel/business-hour/lib/business-hour.ts
  • apps/meteor/ee/server/lib/omnichannel/debounceByParams.ts
  • apps/meteor/ee/server/lib/omnichannel/index.ts
  • apps/meteor/ee/server/lib/omnichannel/logger.ts
  • apps/meteor/ee/server/lib/omnichannel/outboundcomms/rest.ts
  • apps/meteor/ee/server/lib/omnichannel/permissions.ts
  • apps/meteor/ee/server/lib/omnichannel/priorities.ts
  • apps/meteor/ee/server/lib/omnichannel/requestPdfTranscript.ts
  • apps/meteor/ee/server/lib/omnichannel/restrictQuery.ts
  • apps/meteor/ee/server/lib/omnichannel/routing/LoadBalancing.ts
  • apps/meteor/ee/server/lib/omnichannel/routing/LoadRotation.ts
  • apps/meteor/ee/server/lib/omnichannel/settings.ts
  • apps/meteor/ee/server/lib/omnichannel/startup.ts
  • apps/meteor/ee/server/lib/omnichannel/unit.ts
  • apps/meteor/ee/server/lib/roles/insertRole.ts
  • apps/meteor/ee/server/lib/roles/updateRole.ts
  • apps/meteor/ee/server/lib/syncUserRoles.ts
  • apps/meteor/ee/server/local-services/omnichannel.internalService.ts
  • apps/meteor/ee/server/meteor-methods/getReadReceipts.ts
  • apps/meteor/ee/server/meteor-methods/license.ts
  • apps/meteor/ee/server/meteor-methods/removeCannedResponse.ts
  • apps/meteor/ee/server/meteor-methods/saveCannedResponse.ts
  • apps/meteor/ee/server/models/LivechatDepartmentAgents.ts
  • apps/meteor/ee/server/models/raw/CannedResponse.ts
  • apps/meteor/ee/server/models/raw/LivechatDepartment.ts
  • apps/meteor/ee/server/models/raw/LivechatDepartmentAgents.ts
  • apps/meteor/ee/server/models/raw/LivechatRooms.ts
  • apps/meteor/ee/server/models/raw/LivechatTag.ts
  • apps/meteor/ee/server/models/raw/LivechatUnit.ts
  • apps/meteor/ee/server/models/startup.ts
  • apps/meteor/ee/server/patches/airGappedRestrictionsWrapper.ts
  • apps/meteor/ee/server/patches/closeBusinessHour.ts
  • apps/meteor/ee/server/patches/fetchContactHistory.ts
  • apps/meteor/ee/server/patches/getInstanceList.ts
  • apps/meteor/ee/server/patches/isAgentAvailableToTakeContactInquiry.ts
  • apps/meteor/ee/server/patches/mergeContacts.ts
  • apps/meteor/ee/server/patches/verifyContactChannel.ts
  • apps/meteor/ee/server/requestSeatsRoute.ts
  • apps/meteor/ee/server/services/package.json
  • apps/meteor/ee/server/settings/abac.ts
  • apps/meteor/ee/server/settings/contact-verification.ts
  • apps/meteor/ee/server/settings/deviceManagement.ts
  • apps/meteor/ee/server/settings/index.ts
  • apps/meteor/ee/server/settings/ldap.ts
  • apps/meteor/ee/server/settings/outlookCalendar.ts
  • apps/meteor/ee/server/settings/saml.ts
  • apps/meteor/ee/server/settings/settings.internalService.ts
  • apps/meteor/ee/server/settings/settings.ts
  • apps/meteor/ee/server/settings/video-conference.ts
  • apps/meteor/ee/server/settings/voip.ts
  • apps/meteor/ee/server/startup/federation.ts
  • apps/meteor/ee/server/startup/index.ts
  • apps/meteor/ee/server/startup/readReceiptsArchive.ts
  • apps/meteor/ee/server/startup/services.ts
  • apps/meteor/ee/server/startup/upsell.ts
  • apps/meteor/ee/tests/unit/apps/livechat-enterprise/server/lib/isAgentAvailableToTakeContactInquiry.spec.ts
  • apps/meteor/ee/tests/unit/apps/livechat-enterprise/server/lib/mergeContacts.spec.ts
  • apps/meteor/ee/tests/unit/apps/livechat-enterprise/server/lib/verifyContactChannel.spec.ts
  • apps/meteor/ee/tests/unit/server/airgappedRestrictions/airGappedRestrictionsWrapper.spec.ts
  • apps/meteor/ee/tests/unit/server/airgappedRestrictions/airgappedRestrictions.spec.ts
  • apps/meteor/ee/tests/unit/server/hooks/omnichannel/afterInquiryQueued.spec.ts
  • apps/meteor/ee/tests/unit/server/hooks/omnichannel/manageDepartmentUnit.spec.ts
  • apps/meteor/ee/tests/unit/server/lib/apps/disableAppsWithAddonsCallback.spec.ts
  • apps/meteor/ee/tests/unit/server/lib/license/canEnableApp.spec.ts
  • apps/meteor/ee/tests/unit/server/lib/omnichannel/AutoCloseOnHold.tests.ts
  • apps/meteor/ee/tests/unit/server/lib/omnichannel/AutoTransferChatsScheduler.tests.ts
  • apps/meteor/ee/tests/unit/server/lib/omnichannel/Helper.tests.ts
  • apps/meteor/ee/tests/unit/server/lib/omnichannel/QueueInactivityMonitor.spec.ts
  • apps/meteor/ee/tests/unit/server/lib/omnichannel/business-hour/Custom.spec.ts
  • apps/meteor/ee/tests/unit/server/lib/omnichannel/requestPdfTranscript.spec.ts
  • apps/meteor/ee/tests/unit/server/lib/omnichannel/restrictQuery.tests.ts
  • apps/meteor/imports/personal-access-tokens/server/api/methods/generateToken.ts
  • apps/meteor/imports/personal-access-tokens/server/api/methods/regenerateToken.ts
  • apps/meteor/imports/personal-access-tokens/server/api/methods/removeToken.ts
  • apps/meteor/jest.config.ts
  • apps/meteor/lib/errors/CloudOfflineLicenseError.ts
  • apps/meteor/lib/renderableImageTypes.ts
  • apps/meteor/lib/rooms/adminFields.ts
  • apps/meteor/lib/utils/isJSON.spec.ts
  • apps/meteor/lib/utils/isJSON.ts
  • apps/meteor/package.json
  • apps/meteor/server/api/ApiClass.spec.ts
  • apps/meteor/server/api/ApiClass.ts
  • apps/meteor/server/api/README.md
  • apps/meteor/server/api/api.helpers.ts
  • apps/meteor/server/api/api.ts
  • apps/meteor/server/api/default/info.ts
  • apps/meteor/server/api/default/openApi.ts
  • apps/meteor/server/api/definition.ts
  • apps/meteor/server/api/index.ts
  • apps/meteor/server/api/lib/MultipartUploadHandler.ts
  • apps/meteor/server/api/lib/addUserToFileObj.ts
  • apps/meteor/server/api/lib/cleanQuery.ts
  • apps/meteor/server/api/lib/composeRoomWithLastMessage.ts
  • apps/meteor/server/api/lib/emailInbox.ts
  • apps/meteor/server/api/lib/emoji-custom.ts
  • apps/meteor/server/api/lib/eraseTeam.spec.ts
  • apps/meteor/server/api/lib/eraseTeam.ts
  • apps/meteor/server/api/lib/getInstanceList.ts
  • apps/meteor/server/api/lib/getPaginationItems.ts
  • apps/meteor/server/api/lib/getServerInfo.spec.ts
  • apps/meteor/server/api/lib/getServerInfo.ts
  • apps/meteor/server/api/lib/getTrimmedServerVersion.ts
  • apps/meteor/server/api/lib/getUploadFormData.spec.ts
  • apps/meteor/server/api/lib/getUploadFormData.ts
  • apps/meteor/server/api/lib/getUserFromParams.ts
  • apps/meteor/server/api/lib/getUserInfo.spec.ts
  • apps/meteor/server/api/lib/getUserInfo.ts
  • apps/meteor/server/api/lib/integrations.ts
  • apps/meteor/server/api/lib/isUserFromParams.ts
  • apps/meteor/server/api/lib/isValidQuery.ts
  • apps/meteor/server/api/lib/isWidget.ts
  • apps/meteor/server/api/lib/maybeMigrateLivechatRoom.ts
  • apps/meteor/server/api/lib/messages.ts
  • apps/meteor/server/api/lib/parseJsonQuery.ts
  • apps/meteor/server/api/lib/projectionAllowsAttribute.spec.ts
  • apps/meteor/server/api/lib/projectionAllowsAttribute.ts
  • apps/meteor/server/api/lib/rooms.ts
  • apps/meteor/server/api/lib/scopeAdminRoomsForAbac.ts
  • apps/meteor/server/api/lib/users.ts
  • apps/meteor/server/api/router.spec.ts
  • apps/meteor/server/api/router.ts
  • apps/meteor/server/api/v1/ai-search.ts
  • apps/meteor/server/api/v1/assets.ts
  • apps/meteor/server/api/v1/autotranslate.ts
  • apps/meteor/server/api/v1/banners.ts
  • apps/meteor/server/api/v1/calendar.ts
  • apps/meteor/server/api/v1/call-history.ts
  • apps/meteor/server/api/v1/channels.ts
  • apps/meteor/server/api/v1/chat.ts
  • apps/meteor/server/api/v1/cloud.ts
  • apps/meteor/server/api/v1/commands.ts
  • apps/meteor/server/api/v1/connection.d.ts
  • apps/meteor/server/api/v1/custom-sounds.ts
  • apps/meteor/server/api/v1/custom-user-status.ts
  • apps/meteor/server/api/v1/e2e.ts
  • apps/meteor/server/api/v1/email-inbox.ts
  • apps/meteor/server/api/v1/emoji-custom.ts
  • apps/meteor/server/api/v1/groups.ts
  • apps/meteor/server/api/v1/im.ts
  • apps/meteor/server/api/v1/import.ts
  • apps/meteor/server/api/v1/instances.ts
  • apps/meteor/server/api/v1/integrations.ts
  • apps/meteor/server/api/v1/invites.ts
  • apps/meteor/server/api/v1/ldap.ts
  • apps/meteor/server/api/v1/loginCode.ts
  • apps/meteor/server/api/v1/mailer.ts
  • apps/meteor/server/api/v1/media-calls.ts
  • apps/meteor/server/api/v1/middlewares/authentication.ts
  • apps/meteor/server/api/v1/middlewares/authenticationHono.ts
  • apps/meteor/server/api/v1/middlewares/cors.spec.ts
  • apps/meteor/server/api/v1/middlewares/cors.ts
  • apps/meteor/server/api/v1/middlewares/logger.ts
  • apps/meteor/server/api/v1/middlewares/metrics.spec.ts
  • apps/meteor/server/api/v1/middlewares/metrics.ts
  • apps/meteor/server/api/v1/middlewares/permissions.ts
  • apps/meteor/server/api/v1/middlewares/remoteAddressMiddleware.spec.ts
  • apps/meteor/server/api/v1/middlewares/remoteAddressMiddleware.ts
  • apps/meteor/server/api/v1/middlewares/tracer.ts
  • apps/meteor/server/api/v1/misc.ts
  • apps/meteor/server/api/v1/moderation.ts
  • apps/meteor/server/api/v1/oauthapps.ts
  • apps/meteor/server/api/v1/omnichannel/agent.ts
  • apps/meteor/server/api/v1/omnichannel/agentDepartments.ts
  • apps/meteor/server/api/v1/omnichannel/appearance.ts
  • apps/meteor/server/api/v1/omnichannel/businessHours.ts
  • apps/meteor/server/api/v1/omnichannel/config.ts
  • apps/meteor/server/api/v1/omnichannel/contact.ts
  • apps/meteor/server/api/v1/omnichannel/customField.ts
  • apps/meteor/server/api/v1/omnichannel/dashboards.ts
  • apps/meteor/server/api/v1/omnichannel/departments.ts
  • apps/meteor/server/api/v1/omnichannel/index.ts
  • apps/meteor/server/api/v1/omnichannel/inquiries.ts
  • apps/meteor/server/api/v1/omnichannel/integration.ts
  • apps/meteor/server/api/v1/omnichannel/integrations.ts
  • apps/meteor/server/api/v1/omnichannel/lib/agents.ts
  • apps/meteor/server/api/v1/omnichannel/lib/appearance.ts
  • apps/meteor/server/api/v1/omnichannel/lib/businessHours.ts
  • apps/meteor/server/api/v1/omnichannel/lib/customFields.ts
  • apps/meteor/server/api/v1/omnichannel/lib/departments.ts
  • apps/meteor/server/api/v1/omnichannel/lib/inquiries.ts
  • apps/meteor/server/api/v1/omnichannel/lib/integrations.ts
  • apps/meteor/server/api/v1/omnichannel/lib/livechat.ts
  • apps/meteor/server/api/v1/omnichannel/lib/queue.ts
  • apps/meteor/server/api/v1/omnichannel/lib/rooms.ts
  • apps/meteor/server/api/v1/omnichannel/lib/transfer.ts
  • apps/meteor/server/api/v1/omnichannel/lib/triggers.ts
  • apps/meteor/server/api/v1/omnichannel/lib/users.ts
  • apps/meteor/server/api/v1/omnichannel/lib/visitors.ts
  • apps/meteor/server/api/v1/omnichannel/message.ts
  • apps/meteor/server/api/v1/omnichannel/offlineMessage.ts
  • apps/meteor/server/api/v1/omnichannel/pageVisited.ts
  • apps/meteor/server/api/v1/omnichannel/queue.ts
  • apps/meteor/server/api/v1/omnichannel/room.ts
  • apps/meteor/server/api/v1/omnichannel/rooms.ts
  • apps/meteor/server/api/v1/omnichannel/sms.ts
  • apps/meteor/server/api/v1/omnichannel/statistics.ts
  • apps/meteor/server/api/v1/omnichannel/transcript.ts
  • apps/meteor/server/api/v1/omnichannel/transfer.ts
  • apps/meteor/server/api/v1/omnichannel/triggers.ts
  • apps/meteor/server/api/v1/omnichannel/upload.ts
  • apps/meteor/server/api/v1/omnichannel/users.ts
  • apps/meteor/server/api/v1/omnichannel/visitor.ts
  • apps/meteor/server/api/v1/omnichannel/visitors.ts
  • apps/meteor/server/api/v1/omnichannel/webhooks.ts
  • apps/meteor/server/api/v1/permissions.ts
  • apps/meteor/server/api/v1/presence.ts
  • apps/meteor/server/api/v1/push.ts
  • apps/meteor/server/api/v1/roles.ts
  • apps/meteor/server/api/v1/rooms.ts
  • apps/meteor/server/api/v1/settings.ts
  • apps/meteor/server/api/v1/stats.ts
  • apps/meteor/server/api/v1/subscriptions.ts
  • apps/meteor/server/api/v1/teams.ts
  • apps/meteor/server/api/v1/twoFactorChallenges.ts
  • apps/meteor/server/api/v1/uploads.ts
  • apps/meteor/server/api/v1/users.ts
  • apps/meteor/server/api/v1/videoConference.ts
  • apps/meteor/server/api/validation/ajv.ts
  • apps/meteor/server/api/webhooks.ts
  • apps/meteor/server/bridges/irc/README.md
  • apps/meteor/server/bridges/irc/index.ts
  • apps/meteor/server/bridges/irc/irc-bridge/index.js
  • apps/meteor/server/bridges/irc/irc-bridge/localHandlers/index.ts
  • apps/meteor/server/bridges/irc/irc-bridge/localHandlers/onCreateRoom.js
  • apps/meteor/server/bridges/irc/irc-bridge/localHandlers/onCreateUser.js
  • apps/meteor/server/bridges/irc/irc-bridge/localHandlers/onJoinRoom.js
  • apps/meteor/server/bridges/irc/irc-bridge/localHandlers/onLeaveRoom.js
  • apps/meteor/server/bridges/irc/irc-bridge/localHandlers/onLogin.js
  • apps/meteor/server/bridges/irc/irc-bridge/localHandlers/onLogout.js
  • apps/meteor/server/bridges/irc/irc-bridge/localHandlers/onSaveMessage.js
  • apps/meteor/server/bridges/irc/irc-bridge/peerHandlers/disconnected.js
  • apps/meteor/server/bridges/irc/irc-bridge/peerHandlers/index.ts
  • apps/meteor/server/bridges/irc/irc-bridge/peerHandlers/joinedChannel.js
  • apps/meteor/server/bridges/irc/irc-bridge/peerHandlers/leftChannel.js
  • apps/meteor/server/bridges/irc/irc-bridge/peerHandlers/nickChanged.js
  • apps/meteor/server/bridges/irc/irc-bridge/peerHandlers/sentMessage.js
  • apps/meteor/server/bridges/irc/irc-bridge/peerHandlers/userRegistered.js
  • apps/meteor/server/bridges/irc/methods/resetIrcConnection.ts
  • apps/meteor/server/bridges/irc/servers/RFC2813/codes.js
  • apps/meteor/server/bridges/irc/servers/RFC2813/index.js
  • apps/meteor/server/bridges/irc/servers/RFC2813/localCommandHandlers.js
  • apps/meteor/server/bridges/irc/servers/RFC2813/parseMessage.js
  • apps/meteor/server/bridges/irc/servers/RFC2813/peerCommandHandlers.js
  • apps/meteor/server/bridges/irc/servers/index.ts
  • apps/meteor/server/bridges/nextcloud/index.ts
  • apps/meteor/server/bridges/nextcloud/lib.ts
  • apps/meteor/server/bridges/slack/README.md
  • apps/meteor/server/bridges/slack/RocketAdapter.ts
  • apps/meteor/server/bridges/slack/SlackAPI.ts
  • apps/meteor/server/bridges/slack/SlackAdapter.ts
  • apps/meteor/server/bridges/slack/index.ts
  • apps/meteor/server/bridges/slack/logger.ts
  • apps/meteor/server/bridges/slack/removeChannelLinks.ts
  • apps/meteor/server/bridges/slack/slackbridge.ts
  • apps/meteor/server/bridges/slack/slackbridge_import.server.ts
  • apps/meteor/server/bridges/smarsh/functions/generateEml.ts
  • apps/meteor/server/bridges/smarsh/functions/sendEmail.ts
  • apps/meteor/server/bridges/smarsh/index.ts
  • apps/meteor/server/bridges/smarsh/startup.ts
  • apps/meteor/server/configuration/accounts_meld.js
  • apps/meteor/server/configuration/cas.ts
  • apps/meteor/server/configuration/configureAssets.ts
  • apps/meteor/server/configuration/configureBoilerplate.ts
  • apps/meteor/server/configuration/configureCDN.ts
  • apps/meteor/server/configuration/configureCORS.ts
  • apps/meteor/server/configuration/configureDirectReply.ts
  • apps/meteor/server/configuration/configureIRC.ts
  • apps/meteor/server/configuration/configureLogLevel.ts
  • apps/meteor/server/configuration/configurePassport.ts
  • apps/meteor/server/configuration/configureSMTP.ts
  • apps/meteor/server/configuration/index.ts
  • apps/meteor/server/configuration/ldap.ts
  • apps/meteor/server/configuration/oauth.ts
  • apps/meteor/server/configuration/pushNotification.ts
  • apps/meteor/server/cron/nps.ts
  • apps/meteor/server/cron/oembed.ts
  • apps/meteor/server/cron/temporaryUploadsCleanup.ts
  • apps/meteor/server/cron/usageReport.spec.ts
  • apps/meteor/server/cron/usageReport.ts
  • apps/meteor/server/cron/userDataDownloads.ts
  • apps/meteor/server/email/IMAPInterceptor.ts
  • apps/meteor/server/features/EmailInbox/EmailInbox.ts
  • apps/meteor/server/features/EmailInbox/EmailInbox_Incoming.ts
  • apps/meteor/server/features/EmailInbox/EmailInbox_Outgoing.ts
  • apps/meteor/server/hooks/afterUserActions.ts
  • apps/meteor/server/hooks/auth/login.ts
  • apps/meteor/server/hooks/index.ts
  • apps/meteor/server/hooks/messages/afterSaveMessage.ts
  • apps/meteor/server/hooks/messages/mentionUserNotInChannel.ts
  • apps/meteor/server/hooks/messages/notifyUsersOnMessage.ts
  • apps/meteor/server/hooks/messages/processThreads.ts
  • apps/meteor/server/hooks/messages/propagateDiscussionMetadata.ts
  • apps/meteor/server/hooks/messages/sendNotificationsOnMessage.ts
  • apps/meteor/server/hooks/omnichannel/afterAgentRemoved.ts
  • apps/meteor/server/hooks/omnichannel/afterSaveOmnichannelMessage.ts
  • apps/meteor/server/hooks/omnichannel/afterUserActions.ts
  • apps/meteor/server/hooks/omnichannel/leadCapture.ts
  • apps/meteor/server/hooks/omnichannel/markRoomNotResponded.ts
  • apps/meteor/server/hooks/omnichannel/markRoomResponded.ts
  • apps/meteor/server/hooks/omnichannel/offlineMessage.ts
  • apps/meteor/server/hooks/omnichannel/offlineMessageToChannel.ts
  • apps/meteor/server/hooks/omnichannel/processRoomAbandonment.ts
  • apps/meteor/server/hooks/omnichannel/saveAnalyticsData.ts
  • apps/meteor/server/hooks/omnichannel/saveLastMessageToInquiry.ts
  • apps/meteor/server/hooks/omnichannel/saveLastVisitorMessageTs.ts
  • apps/meteor/server/hooks/omnichannel/sendEmailTranscriptOnClose.ts
  • apps/meteor/server/hooks/omnichannel/sendToCRM.ts
  • apps/meteor/server/hooks/rooms/beforeAddUserToRoom.ts
  • apps/meteor/server/hooks/sauMonitorHooks.ts
  • apps/meteor/server/hooks/userLogoutCleanUp.ts
  • apps/meteor/server/importPackages.ts
  • apps/meteor/server/lib/2fa/MethodInvocationOverride.js
  • apps/meteor/server/lib/2fa/code/EmailCheck.spec.ts
  • apps/meteor/server/lib/2fa/code/EmailCheck.ts
  • apps/meteor/server/lib/2fa/code/EmailCheckForOAuth.ts
  • apps/meteor/server/lib/2fa/code/ICodeCheck.ts
  • apps/meteor/server/lib/2fa/code/PasswordCheckFallback.ts
  • apps/meteor/server/lib/2fa/code/TOTPCheck.ts
  • apps/meteor/server/lib/2fa/code/TOTPCheckForOAuth.ts
  • apps/meteor/server/lib/2fa/code/checkCodeForUser.spec.ts
  • apps/meteor/server/lib/2fa/code/index.spec.ts
  • apps/meteor/server/lib/2fa/code/index.ts
  • apps/meteor/server/lib/2fa/definitions/MeteorUser.d.ts
  • apps/meteor/server/lib/2fa/functions/resetTOTP.ts
  • apps/meteor/server/lib/2fa/lib/totp.ts
  • apps/meteor/server/lib/2fa/loginHandler.ts
  • apps/meteor/server/lib/2fa/twoFactorRequired.ts
  • apps/meteor/server/lib/RateLimiter.js
  • apps/meteor/server/lib/auth-providers/apple/AppleCustomOAuth.ts
  • apps/meteor/server/lib/auth-providers/apple/appleOauthRegisterService.ts
  • apps/meteor/server/lib/auth-providers/apple/applePassportOAuth.ts
  • apps/meteor/server/lib/auth-providers/apple/handleIdentityToken.spec.ts
  • apps/meteor/server/lib/auth-providers/apple/handleIdentityToken.ts
  • apps/meteor/server/lib/auth-providers/apple/loginHandler.spec.ts
  • apps/meteor/server/lib/auth-providers/apple/loginHandler.ts
  • apps/meteor/server/lib/auth-providers/crowd/crowd.ts
  • apps/meteor/server/lib/auth-providers/crowd/logger.ts
  • apps/meteor/server/lib/auth-providers/custom-oauth/README.md
  • apps/meteor/server/lib/auth-providers/custom-oauth/customOAuth.ts
  • apps/meteor/server/lib/auth-providers/custom-oauth/custom_oauth_server.d.ts
  • apps/meteor/server/lib/auth-providers/custom-oauth/custom_oauth_server.js
  • apps/meteor/server/lib/auth-providers/custom-oauth/transform_helpers.js
  • apps/meteor/server/lib/auth-providers/dolphin.ts
  • apps/meteor/server/lib/auth-providers/drupal.README.md
  • apps/meteor/server/lib/auth-providers/drupal.ts
  • apps/meteor/server/lib/auth-providers/github-enterprise.ts
  • apps/meteor/server/lib/auth-providers/github.ts
  • apps/meteor/server/lib/auth-providers/gitlab.ts
  • apps/meteor/server/lib/auth-providers/google.js
  • apps/meteor/server/lib/auth-providers/iframe.ts
  • apps/meteor/server/lib/auth-providers/linkedin.ts
  • apps/meteor/server/lib/auth-providers/meteor-developer.ts
  • apps/meteor/server/lib/auth-providers/oauth/facebook.js
  • apps/meteor/server/lib/auth-providers/oauth/google.js
  • apps/meteor/server/lib/auth-providers/oauth/oauth.js
  • apps/meteor/server/lib/auth-providers/oauth/proxy.js
  • apps/meteor/server/lib/auth-providers/oauth/twitter.js
  • apps/meteor/server/lib/auth-providers/wordpress.ts
  • apps/meteor/server/lib/auth/ILoginAttempt.ts
  • apps/meteor/server/lib/auth/generatePassword.ts
  • apps/meteor/server/lib/auth/logLoginAttempts.ts
  • apps/meteor/server/lib/auth/loginErrorMessageOverride.ts
  • apps/meteor/server/lib/auth/oauth2-server/addOAuthApp.ts
  • apps/meteor/server/lib/auth/oauth2-server/index.ts
  • apps/meteor/server/lib/auth/oauth2-server/oauth2-server.ts
  • apps/meteor/server/lib/auth/oauth2-server/parseUriList.ts
  • apps/meteor/server/lib/auth/passwordPolicy.ts
  • apps/meteor/server/lib/auth/restrictLoginAttempts.ts
  • apps/meteor/server/lib/auth/startup.js
  • apps/meteor/server/lib/auth/token-login.js
  • apps/meteor/server/lib/authorization/README.md
  • apps/meteor/server/lib/authorization/canAccessRoom.ts
  • apps/meteor/server/lib/authorization/canDeleteMessage.ts
  • apps/meteor/server/lib/authorization/canSendMessage.ts
  • apps/meteor/server/lib/authorization/constant/permissions.ts
  • apps/meteor/server/lib/authorization/getRoles.ts
  • apps/meteor/server/lib/authorization/getUsersInRole.ts
  • apps/meteor/server/lib/authorization/hasPermission.ts
  • apps/meteor/server/lib/authorization/hasRole.ts
  • apps/meteor/server/lib/authorization/index.ts
  • apps/meteor/server/lib/authorization/isABACManagedRoom.ts
  • apps/meteor/server/lib/authorization/permissionRole.ts
  • apps/meteor/server/lib/authorization/streamer/permissions/index.ts
  • apps/meteor/server/lib/authorization/upsertPermissions.ts
  • apps/meteor/server/lib/autotranslate/README.md
  • apps/meteor/server/lib/autotranslate/autotranslate.ts
  • apps/meteor/server/lib/autotranslate/deeplTranslate.ts
  • apps/meteor/server/lib/autotranslate/functions/getSupportedLanguages.ts
  • apps/meteor/server/lib/autotranslate/functions/saveSettings.ts
  • apps/meteor/server/lib/autotranslate/functions/translateMessage.ts
  • apps/meteor/server/lib/autotranslate/googleTranslate.ts
  • apps/meteor/server/lib/autotranslate/index.ts
  • apps/meteor/server/lib/autotranslate/libreTranslate.ts
  • apps/meteor/server/lib/autotranslate/logger.ts
  • apps/meteor/server/lib/autotranslate/msTranslate.ts
  • apps/meteor/server/lib/autotranslate/permissions.ts
  • apps/meteor/server/lib/banUserFromRoom.ts
  • apps/meteor/server/lib/bot-helpers/README.md
  • apps/meteor/server/lib/bot-helpers/index.ts
  • apps/meteor/server/lib/bugsnag.ts
  • apps/meteor/server/lib/callbacks.ts
  • apps/meteor/server/lib/callbacks/checkUsernameAvailabilityCallback.ts
  • apps/meteor/server/lib/cas/createNewUser.ts
  • apps/meteor/server/lib/cas/findExistingCASUser.ts
  • apps/meteor/server/lib/cas/loginHandler.spec.ts
  • apps/meteor/server/lib/cas/loginHandler.ts
  • apps/meteor/server/lib/cas/middleware.ts
  • apps/meteor/server/lib/cas/updateCasService.ts
  • apps/meteor/server/lib/cloud/buildRegistrationData.ts
  • apps/meteor/server/lib/cloud/checkUserHasCloudLogin.ts
  • apps/meteor/server/lib/cloud/connectWorkspace.ts
  • apps/meteor/server/lib/cloud/finishOAuthAuthorization.ts
  • apps/meteor/server/lib/cloud/getCheckoutUrl.ts
  • apps/meteor/server/lib/cloud/getConfirmationPoll.ts
  • apps/meteor/server/lib/cloud/getOAuthAuthorizationUrl.ts
  • apps/meteor/server/lib/cloud/getRedirectUri.ts
  • apps/meteor/server/lib/cloud/getWorkspaceAccessToken.ts
  • apps/meteor/server/lib/cloud/getWorkspaceAccessTokenWithScope.ts
  • apps/meteor/server/lib/cloud/getWorkspaceKey.ts
  • apps/meteor/server/lib/cloud/getWorkspaceLicense.ts
  • apps/meteor/server/lib/cloud/index.ts
  • apps/meteor/server/lib/cloud/license.ts
  • apps/meteor/server/lib/cloud/license/airGappedRestrictionsWrapper.ts
  • apps/meteor/server/lib/cloud/oauthScopes.ts
  • apps/meteor/server/lib/cloud/offlineLicense.ts
  • apps/meteor/server/lib/cloud/registerPreIntentWorkspaceWizard.ts
  • apps/meteor/server/lib/cloud/removeLicense.ts
  • apps/meteor/server/lib/cloud/removeWorkspaceRegistrationInfo.ts
  • apps/meteor/server/lib/cloud/retrieveRegistrationStatus.ts
  • apps/meteor/server/lib/cloud/saveRegistrationData.ts
  • apps/meteor/server/lib/cloud/startRegisterWorkspace.ts
  • apps/meteor/server/lib/cloud/startRegisterWorkspaceSetupWizard.ts
  • apps/meteor/server/lib/cloud/supportedVersionsToken/supportedVersionsChooseLatest.spec.ts
  • apps/meteor/server/lib/cloud/supportedVersionsToken/supportedVersionsChooseLatest.ts
  • apps/meteor/server/lib/cloud/supportedVersionsToken/supportedVersionsToken.ts
  • apps/meteor/server/lib/cloud/syncWorkspace/announcementSync.ts
  • apps/meteor/server/lib/cloud/syncWorkspace/fetchWorkspaceSyncPayload.ts
  • apps/meteor/server/lib/cloud/syncWorkspace/handleCommsSync.ts
  • apps/meteor/server/lib/cloud/syncWorkspace/index.ts
  • apps/meteor/server/lib/cloud/syncWorkspace/legacySyncWorkspace.ts
  • apps/meteor/server/lib/cloud/syncWorkspace/syncCloudData.ts
  • apps/meteor/server/lib/cloud/userLoggedOut.ts
  • apps/meteor/server/lib/cloud/userLogout.ts
  • apps/meteor/server/lib/cloud/version-check/functions/buildVersionUpdateMessage.spec.ts
  • apps/meteor/server/lib/cloud/version-check/functions/buildVersionUpdateMessage.ts
  • apps/meteor/server/lib/cloud/version-check/functions/checkVersionUpdate.ts
  • apps/meteor/server/lib/cloud/version-check/functions/getNewUpdates.ts
  • apps/meteor/server/lib/cloud/version-check/index.ts
  • apps/meteor/server/lib/cloud/version-check/logger.ts
  • apps/meteor/server/lib/compareUserPasswordHistory.ts
  • apps/meteor/server/lib/cors/cors.ts
  • apps/meteor/server/lib/cors/index.ts
  • apps/meteor/server/lib/dataExport/copyFileUpload.ts
  • apps/meteor/server/lib/dataExport/exportRoomMessagesToFile.ts
  • apps/meteor/server/lib/dataExport/processDataDownloads.spec.ts
  • apps/meteor/server/lib/dataExport/processDataDownloads.ts
  • apps/meteor/server/lib/dataExport/sendEmail.ts
  • apps/meteor/server/lib/dataExport/sendFile.ts
  • apps/meteor/server/lib/dataExport/sendViaEmail.ts
  • apps/meteor/server/lib/dataExport/uploadZipFile.ts
  • apps/meteor/server/lib/debug.js
  • apps/meteor/server/lib/defaultBlockedDomainsList.ts
  • apps/meteor/server/lib/deprecationWarningLogger.ts
  • apps/meteor/server/lib/e2e/beforeCreateRoom.ts
  • apps/meteor/server/lib/e2e/functions/handleSuggestedGroupKey.ts
  • apps/meteor/server/lib/e2e/functions/provideUsersSuggestedGroupKeys.ts
  • apps/meteor/server/lib/e2e/functions/resetRoomKey.ts
  • apps/meteor/server/lib/e2e/index.ts
  • apps/meteor/server/lib/eraseRoom.ts
  • apps/meteor/server/lib/error-handler/RocketChat.ErrorHandler.ts
  • apps/meteor/server/lib/error-handler/index.ts
  • apps/meteor/server/lib/findUsersOfRoom.ts
  • apps/meteor/server/lib/findUsersOfRoomOrderedByRole.ts
  • apps/meteor/server/lib/getSubscriptionAutotranslateDefaultConfig.ts
  • apps/meteor/server/lib/i18n.ts
  • apps/meteor/server/lib/import/classes/ImportDataConverter.ts
  • apps/meteor/server/lib/import/classes/Importer.ts
  • apps/meteor/server/lib/import/classes/ImporterProgress.ts
  • apps/meteor/server/lib/import/classes/ImporterSelection.ts
  • apps/meteor/server/lib/import/classes/ImporterSelectionChannel.ts
  • apps/meteor/server/lib/import/classes/ImporterSelectionUser.ts
  • apps/meteor/server/lib/import/classes/ImporterWebsocket.ts
  • apps/meteor/server/lib/import/classes/ImportersContainer.ts
  • apps/meteor/server/lib/import/classes/converters/ContactConverter.ts
  • apps/meteor/server/lib/import/classes/converters/ConverterCache.ts
  • apps/meteor/server/lib/import/classes/converters/MessageConverter.ts
  • apps/meteor/server/lib/import/classes/converters/RecordConverter.ts
  • apps/meteor/server/lib/import/classes/converters/RoomConverter.ts
  • apps/meteor/server/lib/import/classes/converters/UserConverter.ts
  • apps/meteor/server/lib/import/classes/converters/generateTempPassword.ts
  • apps/meteor/server/lib/import/csv/CsvImporter.ts
  • apps/meteor/server/lib/import/csv/index.ts
  • apps/meteor/server/lib/import/definitions/IConversionCallbacks.ts
  • apps/meteor/server/lib/import/definitions/ImporterInfo.ts
  • apps/meteor/server/lib/import/index.ts
  • apps/meteor/server/lib/import/omnichannel-contacts/ContactImporter.ts
  • apps/meteor/server/lib/import/omnichannel-contacts/addParsedContacts.ts
  • apps/meteor/server/lib/import/omnichannel-contacts/index.ts
  • apps/meteor/server/lib/import/pending-avatars/PendingAvatarImporter.ts
  • apps/meteor/server/lib/import/pending-avatars/index.ts
  • apps/meteor/server/lib/import/pending-files/PendingFileImporter.ts
  • apps/meteor/server/lib/import/pending-files/index.ts
  • apps/meteor/server/lib/import/slack-users/SlackUsersImporter.ts
  • apps/meteor/server/lib/import/slack-users/index.ts
  • apps/meteor/server/lib/import/slack/SlackImporter.ts
  • apps/meteor/server/lib/import/slack/index.ts
  • apps/meteor/server/lib/import/startup/setImportsToInvalid.js
  • apps/meteor/server/lib/import/startup/store.js
  • apps/meteor/server/lib/integrations/functions/clearIntegrationHistory.ts
  • apps/meteor/server/lib/integrations/lib/ScriptEngine.ts
  • apps/meteor/server/lib/integrations/lib/compileIntegrationScript.ts
  • apps/meteor/server/lib/integrations/lib/definition.ts
  • apps/meteor/server/lib/integrations/lib/isolated-vm/buildSandbox.ts
  • apps/meteor/server/lib/integrations/lib/isolated-vm/getCompatibilityScript.ts
  • apps/meteor/server/lib/integrations/lib/isolated-vm/isolated-vm.ts
  • apps/meteor/server/lib/integrations/lib/mountQueriesBasedOnPermission.ts
  • apps/meteor/server/lib/integrations/lib/triggerHandler.ts
  • apps/meteor/server/lib/integrations/lib/updateHistory.ts
  • apps/meteor/server/lib/integrations/lib/validateOutgoingIntegration.ts
  • apps/meteor/server/lib/integrations/lib/validateScriptEngine.ts
  • apps/meteor/server/lib/integrations/lib/validateScriptSyntax.ts
  • apps/meteor/server/lib/integrations/logger.ts
  • apps/meteor/server/lib/integrations/startup.ts
  • apps/meteor/server/lib/integrations/triggers.ts
  • apps/meteor/server/lib/ldap/Connection.spec.ts
  • apps/meteor/server/lib/ldap/Connection.ts
  • apps/meteor/server/lib/ldap/Manager.ts
  • apps/meteor/server/lib/ldap/UserConverter.ts
  • apps/meteor/server/lib/ldap/getLDAPConditionalSetting.ts
  • apps/meteor/server/lib/media/assets/assets.ts
  • apps/meteor/server/lib/media/assets/index.ts
  • apps/meteor/server/lib/media/custom-sounds/lib/deleteCustomSound.ts
  • apps/meteor/server/lib/media/custom-sounds/lib/insertOrUpdateSound.ts
  • apps/meteor/server/lib/media/custom-sounds/lib/uploadCustomSound.ts
  • apps/meteor/server/lib/media/custom-sounds/startup/custom-sounds.js
  • apps/meteor/server/lib/media/emoji-custom/lib/insertOrUpdateEmoji.ts
  • apps/meteor/server/lib/media/emoji-custom/lib/uploadEmojiCustom.ts
  • apps/meteor/server/lib/media/emoji-custom/startup/emoji-custom.js
  • apps/meteor/server/lib/media/emoji-native/callbacks.ts
  • apps/meteor/server/lib/media/emoji-native/lib.ts
  • apps/meteor/server/lib/media/file-upload/config/AmazonS3.ts
  • apps/meteor/server/lib/media/file-upload/config/FileSystem.ts
  • apps/meteor/server/lib/media/file-upload/config/GoogleStorage.ts
  • apps/meteor/server/lib/media/file-upload/config/GridFS.ts
  • apps/meteor/server/lib/media/file-upload/config/_configUploadStorage.ts
  • apps/meteor/server/lib/media/file-upload/config/helper.ts
  • apps/meteor/server/lib/media/file-upload/index.ts
  • apps/meteor/server/lib/media/file-upload/isImagePreviewSupported.ts
  • apps/meteor/server/lib/media/file-upload/lib/FileUpload.spec.ts
  • apps/meteor/server/lib/media/file-upload/lib/FileUpload.ts
  • apps/meteor/server/lib/media/file-upload/lib/FileUploadBase.ts
  • apps/meteor/server/lib/media/file-upload/lib/ranges.ts
  • apps/meteor/server/lib/media/file-upload/lib/requests.ts
  • apps/meteor/server/lib/media/file-upload/lib/urlExpiry.spec.ts
  • apps/meteor/server/lib/media/file-upload/lib/urlExpiry.ts
  • apps/meteor/server/lib/media/file-upload/ufs/AmazonS3/server.ts
  • apps/meteor/server/lib/media/file-upload/ufs/GoogleStorage/server.ts
  • apps/meteor/server/lib/media/file/file.server.ts
  • apps/meteor/server/lib/media/file/functions/sanitizeFileName.spec.ts
  • apps/meteor/server/lib/media/file/functions/sanitizeFileName.ts
  • apps/meteor/server/lib/media/file/index.ts
  • apps/meteor/server/lib/messages/attachMessage.ts
  • apps/meteor/server/lib/messages/deleteMessage.ts
  • apps/meteor/server/lib/messages/extractMentionsFromMessageAST.ts
  • apps/meteor/server/lib/messages/extractUrlsFromMessageAST.spec.ts
  • apps/meteor/server/lib/messages/extractUrlsFromMessageAST.ts
  • apps/meteor/server/lib/messages/insertMessage.ts
  • apps/meteor/server/lib/messages/isTheLastMessage.ts
  • apps/meteor/server/lib/messages/loadMessageHistory.ts
  • apps/meteor/server/lib/messages/parseUrlsInMessage.ts
  • apps/meteor/server/lib/messages/processWebhookMessage.ts
  • apps/meteor/server/lib/messages/sendMessage.ts
  • apps/meteor/server/lib/messages/updateMessage.ts
  • apps/meteor/server/lib/messaging/Message.ts
  • apps/meteor/server/lib/messaging/discussions/permissions.ts
  • apps/meteor/server/lib/messaging/emoji.ts
  • apps/meteor/server/lib/messaging/getHiddenSystemMessages.ts
  • apps/meteor/server/lib/messaging/markdown.ts
  • apps/meteor/server/lib/messaging/mentions/Mentions.ts
  • apps/meteor/server/lib/messaging/mentions/getMentionedTeamMembers.ts
  • apps/meteor/server/lib/messaging/msgStream.ts
  • apps/meteor/server/lib/messaging/pins/pinMessage.ts
  • apps/meteor/server/lib/messaging/reactions/setReaction.ts
  • apps/meteor/server/lib/messaging/stars/starMessage.ts
  • apps/meteor/server/lib/messaging/threads/README.md
  • apps/meteor/server/lib/messaging/threads/functions.ts
  • apps/meteor/server/lib/messaging/unread/logger.ts
  • apps/meteor/server/lib/messaging/unread/unreadMessages.ts
  • apps/meteor/server/lib/messaging/validateCustomMessageFields.ts
  • apps/meteor/server/lib/metrics/index.ts
  • apps/meteor/server/lib/metrics/lib/collectMetrics.ts
  • apps/meteor/server/lib/metrics/lib/metrics.ts
  • apps/meteor/server/lib/metrics/lib/statsTracker.js
  • apps/meteor/server/lib/moderation/deleteReportedMessages.ts
  • apps/meteor/server/lib/moderation/reportMessage.ts
  • apps/meteor/server/lib/notifications/core/index.ts
  • apps/meteor/server/lib/notifications/core/lib/Notifications.ts
  • apps/meteor/server/lib/notifications/core/lib/Presence.ts
  • apps/meteor/server/lib/notifications/email/api.ts
  • apps/meteor/server/lib/notifications/email/replaceVariables.ts
  • apps/meteor/server/lib/notifications/interceptDirectReplyEmails.js
  • apps/meteor/server/lib/notifications/mail-messages/functions/sendMail.ts
  • apps/meteor/server/lib/notifications/mail-messages/functions/unsubscribe.ts
  • apps/meteor/server/lib/notifications/mail-messages/lib/Mailer.ts
  • apps/meteor/server/lib/notifications/message/desktop.ts
  • apps/meteor/server/lib/notifications/message/email.js
  • apps/meteor/server/lib/notifications/message/index.ts
  • apps/meteor/server/lib/notifications/message/messageContainsHighlight.ts
  • apps/meteor/server/lib/notifications/message/mobile.js
  • apps/meteor/server/lib/notifications/processDirectEmail.ts
  • apps/meteor/server/lib/notifications/push-config/index.ts
  • apps/meteor/server/lib/notifications/push-config/lib/PushNotification.ts
  • apps/meteor/server/lib/notifications/push/apn.spec.ts
  • apps/meteor/server/lib/notifications/push/apn.ts
  • apps/meteor/server/lib/notifications/push/definition.ts
  • apps/meteor/server/lib/notifications/push/fcm.ts
  • apps/meteor/server/lib/notifications/push/index.ts
  • apps/meteor/server/lib/notifications/push/logger.ts
  • apps/meteor/server/lib/notifications/push/push.ts
  • apps/meteor/server/lib/notifications/queue/NotificationQueue.ts
  • apps/meteor/server/lib/notifyListener.ts
  • apps/meteor/server/lib/oauth/addOAuthService.ts
  • apps/meteor/server/lib/oauth/addPassportCustomOAuth.ts
  • apps/meteor/server/lib/oauth/allowPassportOAuthMiddleware.ts
  • apps/meteor/server/lib/oauth/configureOAuthServices.ts
  • apps/meteor/server/lib/oauth/createOAuthServiceConfig.ts
  • apps/meteor/server/lib/oauth/getOAuthServices.ts
  • apps/meteor/server/lib/oauth/oauthConfigs.ts
  • apps/meteor/server/lib/oauth/passportOAuthCallback.ts
  • apps/meteor/server/lib/oauth/twoFactorAuth.ts
  • apps/meteor/server/lib/oauth/updateOAuthServices.ts
  • apps/meteor/server/lib/oauth/verifyFunction.ts
  • apps/meteor/server/lib/omnichannel/AnalyticsTyped.ts
  • apps/meteor/server/lib/omnichannel/Assets.ts
  • apps/meteor/server/lib/omnichannel/Helper.ts
  • apps/meteor/server/lib/omnichannel/QueueManager.ts
  • apps/meteor/server/lib/omnichannel/RoutingManager.ts
  • apps/meteor/server/lib/omnichannel/Visitors.ts
  • apps/meteor/server/lib/omnichannel/analytics/agents.ts
  • apps/meteor/server/lib/omnichannel/analytics/dashboards.ts
  • apps/meteor/server/lib/omnichannel/analytics/departments.ts
  • apps/meteor/server/lib/omnichannel/business-hour/AbstractBusinessHour.ts
  • apps/meteor/server/lib/omnichannel/business-hour/BusinessHourManager.ts
  • apps/meteor/server/lib/omnichannel/business-hour/Default.ts
  • apps/meteor/server/lib/omnichannel/business-hour/Helper.ts
  • apps/meteor/server/lib/omnichannel/business-hour/LivechatBusinessHours.ts
  • apps/meteor/server/lib/omnichannel/business-hour/Single.ts
  • apps/meteor/server/lib/omnichannel/business-hour/closeBusinessHour.ts
  • apps/meteor/server/lib/omnichannel/business-hour/filterBusinessHoursThatMustBeOpened.spec.ts
  • apps/meteor/server/lib/omnichannel/business-hour/filterBusinessHoursThatMustBeOpened.ts
  • apps/meteor/server/lib/omnichannel/business-hour/getAgentIdsForBusinessHour.ts
  • apps/meteor/server/lib/omnichannel/business-hour/index.ts
  • apps/meteor/server/lib/omnichannel/closeLivechatRoom.ts
  • apps/meteor/server/lib/omnichannel/closeOmnichannelConversations.ts
  • apps/meteor/server/lib/omnichannel/closeRoom.ts
  • apps/meteor/server/lib/omnichannel/conditionalLockAgent.ts
  • apps/meteor/server/lib/omnichannel/contacts/ContactMerger.ts
  • apps/meteor/server/lib/omnichannel/contacts/addContactEmail.ts
  • apps/meteor/server/lib/omnichannel/contacts/createContact.ts
  • apps/meteor/server/lib/omnichannel/contacts/createContactFromVisitor.ts
  • apps/meteor/server/lib/omnichannel/contacts/disableContact.ts
  • apps/meteor/server/lib/omnichannel/contacts/getAllowedCustomFields.ts
  • apps/meteor/server/lib/omnichannel/contacts/getContactChannelsGrouped.ts
  • apps/meteor/server/lib/omnichannel/contacts/getContactHistory.ts
  • apps/meteor/server/lib/omnichannel/contacts/getContactIdByVisitor.ts
  • apps/meteor/server/lib/omnichannel/contacts/getContactManagerIdByUsername.ts
  • apps/meteor/server/lib/omnichannel/contacts/getContacts.ts
  • apps/meteor/server/lib/omnichannel/contacts/isAgentAvailableToTakeContactInquiry.ts
  • apps/meteor/server/lib/omnichannel/contacts/isVerifiedChannelInSource.spec.ts
  • apps/meteor/server/lib/omnichannel/contacts/isVerifiedChannelInSource.ts
  • apps/meteor/server/lib/omnichannel/contacts/mapVisitorToContact.spec.ts
  • apps/meteor/server/lib/omnichannel/contacts/mapVisitorToContact.ts
  • apps/meteor/server/lib/omnichannel/contacts/mergeContacts.ts
  • apps/meteor/server/lib/omnichannel/contacts/migrateVisitorIfMissingContact.ts
  • apps/meteor/server/lib/omnichannel/contacts/migrateVisitorToContactId.spec.ts
  • apps/meteor/server/lib/omnichannel/contacts/migrateVisitorToContactId.ts
  • apps/meteor/server/lib/omnichannel/contacts/patchContact.ts
  • apps/meteor/server/lib/omnichannel/contacts/registerContact.spec.ts
  • apps/meteor/server/lib/omnichannel/contacts/registerContact.ts
  • apps/meteor/server/lib/omnichannel/contacts/resolveContactConflicts.spec.ts
  • apps/meteor/server/lib/omnichannel/contacts/resolveContactConflicts.ts
  • apps/meteor/server/lib/omnichannel/contacts/updateContact.spec.ts
  • apps/meteor/server/lib/omnichannel/contacts/updateContact.ts
  • apps/meteor/server/lib/omnichannel/contacts/validateContactManager.spec.ts
  • apps/meteor/server/lib/omnichannel/contacts/validateContactManager.ts
  • apps/meteor/server/lib/omnichannel/contacts/validateCustomFields.spec.ts
  • apps/meteor/server/lib/omnichannel/contacts/validateCustomFields.ts
  • apps/meteor/server/lib/omnichannel/contacts/verifyContactChannel.ts
  • apps/meteor/server/lib/omnichannel/custom-fields.ts
  • apps/meteor/server/lib/omnichannel/departmentsLib.ts
  • apps/meteor/server/lib/omnichannel/getRoomMessages.ts
  • apps/meteor/server/lib/omnichannel/guests.ts
  • apps/meteor/server/lib/omnichannel/hooks.ts
  • apps/meteor/server/lib/omnichannel/index.ts
  • apps/meteor/server/lib/omnichannel/isMessageFromBot.ts
  • apps/meteor/server/lib/omnichannel/livechat.ts
  • apps/meteor/server/lib/omnichannel/localTypes.ts
  • apps/meteor/server/lib/omnichannel/logger.ts
  • apps/meteor/server/lib/omnichannel/messages.ts
  • apps/meteor/server/lib/omnichannel/omni-users.ts
  • apps/meteor/server/lib/omnichannel/outboundcommunication.ts
  • apps/meteor/server/lib/omnichannel/parseTranscriptRequest.ts
  • apps/meteor/server/lib/omnichannel/resolveVisitor.ts
  • apps/meteor/server/lib/omnichannel/roomAccessValidator.compatibility.ts
  • apps/meteor/server/lib/omnichannel/roomAccessValidator.internalService.ts
  • apps/meteor/server/lib/omnichannel/rooms.ts
  • apps/meteor/server/lib/omnichannel/routing/AutoSelection.ts
  • apps/meteor/server/lib/omnichannel/routing/External.ts
  • apps/meteor/server/lib/omnichannel/routing/ManualSelection.ts
  • apps/meteor/server/lib/omnichannel/sendMessageBySMS.ts
  • apps/meteor/server/lib/omnichannel/sendTranscript.ts
  • apps/meteor/server/lib/omnichannel/service-status.ts
  • apps/meteor/server/lib/omnichannel/settings.ts
  • apps/meteor/server/lib/omnichannel/startup.ts
  • apps/meteor/server/lib/omnichannel/statistics/LivechatAgentActivityMonitor.ts
  • apps/meteor/server/lib/omnichannel/stream/agentStatus.ts
  • apps/meteor/server/lib/omnichannel/takeInquiry.ts
  • apps/meteor/server/lib/omnichannel/tracking.ts
  • apps/meteor/server/lib/omnichannel/transfer.ts
  • apps/meteor/server/lib/omnichannel/utils.ts
  • apps/meteor/server/lib/omnichannel/webhooks.ts
  • apps/meteor/server/lib/openRoom.ts
  • apps/meteor/server/lib/pushConfig.ts
  • apps/meteor/server/lib/readMessages.ts
  • apps/meteor/server/lib/refreshLoginServices.ts
  • apps/meteor/server/lib/resetUserE2EKey.ts
  • apps/meteor/server/lib/roles/addUserRoles.ts
  • apps/meteor/server/lib/roles/getRoomRoles.ts
  • apps/meteor/server/lib/roles/removeUserFromRoles.ts
  • apps/meteor/server/lib/rooms/acceptRoomInvite.ts
  • apps/meteor/server/lib/rooms/addUserToDefaultChannels.ts
  • apps/meteor/server/lib/rooms/addUserToRoom.ts
  • apps/meteor/server/lib/rooms/archiveRoom.ts
  • apps/meteor/server/lib/rooms/banUserFromRoom.ts
  • apps/meteor/server/lib/rooms/cleanRoomHistory.ts
  • apps/meteor/server/lib/rooms/createDirectRoom.ts
  • apps/meteor/server/lib/rooms/createRoom.ts
  • apps/meteor/server/lib/rooms/deleteRoom.ts
  • apps/meteor/server/lib/rooms/executeUnbanUserFromRoom.ts
  • apps/meteor/server/lib/rooms/getDefaultChannels.ts
  • apps/meteor/server/lib/rooms/getRoomByNameOrIdWithOptionToJoin.ts
  • apps/meteor/server/lib/rooms/getRoomsWithSingleOwner.ts
  • apps/meteor/server/lib/rooms/invites/findOrCreateInvite.ts
  • apps/meteor/server/lib/rooms/invites/listInvites.ts
  • apps/meteor/server/lib/rooms/invites/removeInvite.ts
  • apps/meteor/server/lib/rooms/invites/sendInvitationEmail.ts
  • apps/meteor/server/lib/rooms/invites/useInviteToken.ts
  • apps/meteor/server/lib/rooms/invites/validateInviteToken.ts
  • apps/meteor/server/lib/rooms/joinDefaultChannels.ts
  • apps/meteor/server/lib/rooms/relinquishRoomOwnerships.ts
  • apps/meteor/server/lib/rooms/removeUserFromRoom.ts
  • apps/meteor/server/lib/rooms/retention/cronPruneMessages.ts
  • apps/meteor/server/lib/rooms/retention/index.ts
  • apps/meteor/server/lib/rooms/roomCoordinator.ts
  • apps/meteor/server/lib/rooms/roomTypes/direct.ts
  • apps/meteor/server/lib/rooms/roomTypes/private.ts
  • apps/meteor/server/lib/rooms/roomTypes/public.ts
  • apps/meteor/server/lib/rooms/setRoomAvatar.ts
  • apps/meteor/server/lib/rooms/settings/index.ts
  • apps/meteor/server/lib/rooms/settings/saveReactWhenReadOnly.ts
  • apps/meteor/server/lib/rooms/settings/saveRoomAnnouncement.ts
  • apps/meteor/server/lib/rooms/settings/saveRoomCustomFields.ts
  • apps/meteor/server/lib/rooms/settings/saveRoomDescription.ts
  • apps/meteor/server/lib/rooms/settings/saveRoomEncrypted.ts
  • apps/meteor/server/lib/rooms/settings/saveRoomName.ts
  • apps/meteor/server/lib/rooms/settings/saveRoomReadOnly.ts
  • apps/meteor/server/lib/rooms/settings/saveRoomSystemMessages.ts
  • apps/meteor/server/lib/rooms/settings/saveRoomTopic.ts
  • apps/meteor/server/lib/rooms/settings/saveRoomType.ts
  • apps/meteor/server/lib/rooms/syncRolePrioritiesForRoomIfRequired.ts
  • apps/meteor/server/lib/rooms/unarchiveRoom.ts
  • apps/meteor/server/lib/rooms/updateGroupDMsName.ts
  • apps/meteor/server/lib/saml/CHANGELOG.md
  • apps/meteor/server/lib/saml/README.md
  • apps/meteor/server/lib/saml/definition/IAttributeMapping.ts
  • apps/meteor/server/lib/saml/definition/IAuthorizeRequestVariables.ts
  • apps/meteor/server/lib/saml/definition/ILogoutRequestVariables.ts
  • apps/meteor/server/lib/saml/definition/ILogoutResponse.ts
  • apps/meteor/server/lib/saml/definition/ILogoutResponseVariables.ts
  • apps/meteor/server/lib/saml/definition/IMetadataVariables.ts
  • apps/meteor/server/lib/saml/definition/ISAMLAction.ts
  • apps/meteor/server/lib/saml/definition/ISAMLAssertion.ts
  • apps/meteor/server/lib/saml/definition/ISAMLGlobalSettings.ts
  • apps/meteor/server/lib/saml/definition/ISAMLRequest.ts
  • apps/meteor/server/lib/saml/definition/ISAMLUser.ts
  • apps/meteor/server/lib/saml/definition/IServiceProviderOptions.ts
  • apps/meteor/server/lib/saml/definition/SAMLEnvelope.ts
  • apps/meteor/server/lib/saml/definition/callbacks.ts
  • apps/meteor/server/lib/saml/lib/SAML.ts
  • apps/meteor/server/lib/saml/lib/ServiceProvider.ts
  • apps/meteor/server/lib/saml/lib/Utils.ts
  • apps/meteor/server/lib/saml/lib/constants.ts
  • apps/meteor/server/lib/saml/lib/generators/AuthorizeRequest.ts
  • apps/meteor/server/lib/saml/lib/generators/LogoutRequest.ts
  • apps/meteor/server/lib/saml/lib/generators/LogoutResponse.ts
  • apps/meteor/server/lib/saml/lib/generators/ServiceProviderMetadata.ts
  • apps/meteor/server/lib/saml/lib/getSAMLEnvelope.ts
  • apps/meteor/server/lib/saml/lib/parsers/LogoutRequest.ts
  • apps/meteor/server/lib/saml/lib/parsers/LogoutResponse.ts
  • apps/meteor/server/lib/saml/lib/parsers/Response.ts
  • apps/meteor/server/lib/saml/lib/settings.ts
  • apps/meteor/server/lib/saml/lib/signature/signatureAlgorithms.ts
  • apps/meteor/server/lib/saml/lib/signature/validateRedirectSignature.ts
  • apps/meteor/server/lib/saml/listener.ts
  • apps/meteor/server/lib/saml/loginHandler.ts
  • apps/meteor/server/lib/saml/startup.ts
  • apps/meteor/server/lib/search/events/EventService.ts
  • apps/meteor/server/lib/search/events/index.ts
  • apps/meteor/server/lib/search/logger/logger.ts
  • apps/meteor/server/lib/search/model/ISearchResult.ts
  • apps/meteor/server/lib/search/model/SearchProvider.ts
  • apps/meteor/server/lib/search/model/Setting.ts
  • apps/meteor/server/lib/search/model/Settings.ts
  • apps/meteor/server/lib/search/provider/DefaultProvider.ts
  • apps/meteor/server/lib/search/register.ts
  • apps/meteor/server/lib/search/search.internalService.ts
  • apps/meteor/server/lib/search/service/SearchProviderService.ts
  • apps/meteor/server/lib/search/service/SearchResultValidationService.ts
  • apps/meteor/server/lib/search/service/index.ts
  • apps/meteor/server/lib/search/startup.ts
  • apps/meteor/server/lib/sendDirectMessageToUsers.ts
  • apps/meteor/server/lib/sendMessagesToAdmins.ts
  • apps/meteor/server/lib/settingValidationRules.ts
  • apps/meteor/server/lib/shared/disableCustomScripts.ts
  • apps/meteor/server/lib/shared/getModifiedHttpHeaders.ts
  • apps/meteor/server/lib/shared/validateName.ts
  • apps/meteor/server/lib/shared/validateNameChars.ts
  • apps/meteor/server/lib/shouldBreakInVersion.ts
  • apps/meteor/server/lib/spotlight.js
  • apps/meteor/server/lib/statistics/functions/getLastStatistics.ts
  • apps/meteor/server/lib/statistics/functions/getStatistics.ts
  • apps/meteor/server/lib/statistics/functions/sendUsageReport.spec.ts
  • apps/meteor/server/lib/statistics/functions/sendUsageReport.ts
  • apps/meteor/server/lib/statistics/functions/slashCommandsStats.ts
  • apps/meteor/server/lib/statistics/functions/updateStatsCounter.ts
  • apps/meteor/server/lib/statistics/getSettingsStatistics.ts
  • apps/meteor/server/lib/statistics/index.ts
  • apps/meteor/server/lib/statistics/lib/SAUMonitor.ts
  • apps/meteor/server/lib/statistics/lib/UAParserCustom.js
  • apps/meteor/server/lib/statistics/lib/getAppsStatistics.ts
  • apps/meteor/server/lib/statistics/lib/getContactVerificationStatistics.ts
  • apps/meteor/server/lib/statistics/lib/getEEStatistics.ts
  • apps/meteor/server/lib/statistics/lib/getImporterStatistics.ts
  • apps/meteor/server/lib/statistics/lib/getServicesStatistics.ts
  • apps/meteor/server/lib/statistics/lib/statistics.ts
  • apps/meteor/server/lib/statistics/lib/telemetryEvents.ts
  • apps/meteor/server/lib/statistics/startup/monitor.ts
  • apps/meteor/server/lib/ui-master/index.ts
  • apps/meteor/server/lib/ui-master/inject.ts
  • apps/meteor/server/lib/ui-master/scripts.ts
  • apps/meteor/server/lib/unbanUserFromRoom.ts
  • apps/meteor/server/lib/users/blockUser.ts
  • apps/meteor/server/lib/users/checkEmailAvailability.ts
  • apps/meteor/server/lib/users/checkUsernameAvailability.ts
  • apps/meteor/server/lib/users/deleteUser.ts
  • apps/meteor/server/lib/users/getAvatarSuggestionForUser.ts
  • apps/meteor/server/lib/users/getFullUserData.ts
  • apps/meteor/server/lib/users/getStatusText.ts
  • apps/meteor/server/lib/users/getUserCreatedByApp.ts
  • apps/meteor/server/lib/users/getUserSingleOwnedRooms.ts
  • apps/meteor/server/lib/users/getUsernameSuggestion.ts
  • apps/meteor/server/lib/users/runAfterVerifyEmail.ts
  • apps/meteor/server/lib/users/saveCustomFields.ts
  • apps/meteor/server/lib/users/saveCustomFieldsWithoutValidation.ts
  • apps/meteor/server/lib/users/saveUser/handleBio.ts
  • apps/meteor/server/lib/users/saveUser/handleNickname.ts
  • apps/meteor/server/lib/users/saveUser/index.ts
  • apps/meteor/server/lib/users/saveUser/saveNewUser.ts
  • apps/meteor/server/lib/users/saveUser/saveUser.ts
  • apps/meteor/server/lib/users/saveUser/sendUserEmail.ts
  • apps/meteor/server/lib/users/saveUser/setPasswordUpdater.ts
  • apps/meteor/server/lib/users/saveUser/validateUserData.ts
  • apps/meteor/server/lib/users/saveUser/validateUserEditing.ts
  • apps/meteor/server/lib/users/saveUserIdentity.ts
  • apps/meteor/server/lib/users/setEmail.ts
  • apps/meteor/server/lib/users/setRealName.ts
  • apps/meteor/server/lib/users/setStatusText.ts
  • apps/meteor/server/lib/users/setUserActiveStatus.ts
  • apps/meteor/server/lib/users/setUserAvatar.ts
  • apps/meteor/server/lib/users/setUsername.ts
  • apps/meteor/server/lib/users/unarchiveUserSubscriptions.ts
  • apps/meteor/server/lib/users/unblockUser.ts
  • apps/meteor/server/lib/users/validateCustomFields.js
  • apps/meteor/server/lib/users/validateUsername.ts
  • apps/meteor/server/lib/utils/functions/getBaseUserFields.ts
  • apps/meteor/server/lib/utils/functions/getDefaultUserFields.ts
  • apps/meteor/server/lib/utils/functions/getMongoInfo.ts
  • apps/meteor/server/lib/utils/functions/isDocker.ts
  • apps/meteor/server/lib/utils/functions/isSMTPConfigured.ts
  • apps/meteor/server/lib/utils/functions/normalizeMessageFileUpload.ts
  • apps/meteor/server/lib/utils/getAvatarURL.ts
  • apps/meteor/server/lib/utils/getURL.ts
  • apps/meteor/server/lib/utils/getUserAvatarURL.ts
  • apps/meteor/server/lib/utils/getUserNotificationPreference.ts
  • apps/meteor/server/lib/utils/lib/JWTHelper.spec.ts
  • apps/meteor/server/lib/utils/lib/JWTHelper.ts
  • apps/meteor/server/lib/utils/lib/getAvatarColor.ts
  • apps/meteor/server/lib/utils/lib/getDefaultSubscriptionPref.ts
  • apps/meteor/server/lib/utils/lib/getTimezone.ts
  • apps/meteor/server/lib/utils/lib/getUserPreference.ts
  • apps/meteor/server/lib/utils/lib/getValidRoomName.ts
  • apps/meteor/server/lib/utils/lib/normalizeMessagesForUser.ts
  • apps/meteor/server/lib/utils/lib/templateVarHandler.ts
  • apps/meteor/server/lib/utils/placeholders.ts
  • apps/meteor/server/lib/utils/restrictions.ts
  • apps/meteor/server/lib/utils/slashCommand.ts
  • apps/meteor/server/lib/validateEmailDomain.js
  • apps/meteor/server/lib/videoConfProviders.ts
  • apps/meteor/server/main.ts
  • apps/meteor/server/meteor-methods/auth/addOAuthService.ts
  • apps/meteor/server/meteor-methods/auth/addPermissionToRole.ts
  • apps/meteor/server/meteor-methods/auth/addSamlService.ts
  • apps/meteor/server/meteor-methods/auth/addUserToRole.ts
  • apps/meteor/server/meteor-methods/auth/afterVerifyEmail.ts
  • apps/meteor/server/meteor-methods/auth/checkCodesRemaining.ts
  • apps/meteor/server/meteor-methods/auth/checkRegistrationSecretURL.ts
  • apps/meteor/server/meteor-methods/auth/createToken.ts
  • apps/meteor/server/meteor-methods/auth/crowd.ts
  • apps/meteor/server/meteor-methods/auth/deleteOAuthApp.ts
  • apps/meteor/server/meteor-methods/auth/disable.ts
  • apps/meteor/server/meteor-methods/auth/enable.ts
  • apps/meteor/server/meteor-methods/auth/logoutCleanUp.ts
  • apps/meteor/server/meteor-methods/auth/refreshOAuthService.ts
  • apps/meteor/server/meteor-methods/auth/regenerateCodes.ts
  • apps/meteor/server/meteor-methods/auth/removeOAuthService.ts
  • apps/meteor/server/meteor-methods/auth/removeRoleFromPermission.ts
  • apps/meteor/server/meteor-methods/auth/removeUserFromRole.ts
  • apps/meteor/server/meteor-methods/auth/samlLogout.ts
  • apps/meteor/server/meteor-methods/auth/sendConfirmationEmail.ts
  • apps/meteor/server/meteor-methods/auth/sendForgotPasswordEmail.ts
  • apps/meteor/server/meteor-methods/auth/updateOAuthApp.ts
  • apps/meteor/server/meteor-methods/auth/validateTempToken.ts
  • apps/meteor/server/meteor-methods/import/downloadPublicImportFile.ts
  • apps/meteor/server/meteor-methods/import/getImportFileData.ts
  • apps/meteor/server/meteor-methods/import/getImportProgress.ts
  • apps/meteor/server/meteor-methods/import/getLatestImportOperations.ts
  • apps/meteor/server/meteor-methods/import/startImport.ts
  • apps/meteor/server/meteor-methods/import/uploadImportFile.ts
  • apps/meteor/server/meteor-methods/index.ts
  • apps/meteor/server/meteor-methods/integrations/clearIntegrationHistory.ts
  • apps/meteor/server/meteor-methods/integrations/incoming/addIncomingIntegration.ts
  • apps/meteor/server/meteor-methods/integrations/incoming/deleteIncomingIntegration.ts
  • apps/meteor/server/meteor-methods/integrations/incoming/updateIncomingIntegration.ts
  • apps/meteor/server/meteor-methods/integrations/outgoing/addOutgoingIntegration.ts
  • apps/meteor/server/meteor-methods/integrations/outgoing/deleteOutgoingIntegration.ts
  • apps/meteor/server/meteor-methods/integrations/outgoing/replayOutgoingIntegration.ts
  • apps/meteor/server/meteor-methods/integrations/outgoing/updateOutgoingIntegration.ts
  • apps/meteor/server/meteor-methods/media/deleteEmojiCustom.ts
  • apps/meteor/server/meteor-methods/media/getS3FileUrl.ts
  • apps/meteor/server/meteor-methods/media/insertOrUpdateEmoji.ts
  • apps/meteor/server/meteor-methods/media/listCustomSounds.ts
  • apps/meteor/server/meteor-methods/media/uploadEmojiCustom.ts
  • apps/meteor/server/meteor-methods/messages/createDirectMessage.ts
  • apps/meteor/server/meteor-methods/messages/createDiscussion.ts
  • apps/meteor/server/meteor-methods/messages/deleteFileMessage.ts
  • apps/meteor/server/meteor-methods/messages/executeSlashCommandPreview.ts
  • apps/meteor/server/meteor-methods/messages/followMessage.ts
  • apps/meteor/server/meteor-methods/messages/getChannelHistory.ts
  • apps/meteor/server/meteor-methods/messages/getMessages.ts
  • apps/meteor/server/meteor-methods/messages/getSingleMessage.ts
  • apps/meteor/server/meteor-methods/messages/getSlashCommandPreviews.ts
  • apps/meteor/server/meteor-methods/messages/getThreadMessages.ts
  • apps/meteor/server/meteor-methods/messages/getThreadsList.ts
  • apps/meteor/server/meteor-methods/messages/getUserMentionsByChannel.ts
  • apps/meteor/server/meteor-methods/messages/loadHistory.ts
  • apps/meteor/server/meteor-methods/messages/loadMissedMessages.ts
  • apps/meteor/server/meteor-methods/messages/loadNextMessages.ts
  • apps/meteor/server/meteor-methods/messages/loadSurroundingMessages.ts
  • apps/meteor/server/meteor-methods/messages/messageSearch.ts
  • apps/meteor/server/meteor-methods/messages/readMessages.ts
  • apps/meteor/server/meteor-methods/messages/readThreads.ts
  • apps/meteor/server/meteor-methods/messages/sendFileMessage.spec.ts
  • apps/meteor/server/meteor-methods/messages/sendFileMessage.ts
  • apps/meteor/server/meteor-methods/messages/sendMessage.ts
  • apps/meteor/server/meteor-methods/messages/unfollowMessage.ts
  • apps/meteor/server/meteor-methods/messages/updateMessage.ts
  • apps/meteor/server/meteor-methods/omnichannel/sendFileLivechatMessage.ts
  • apps/meteor/server/meteor-methods/omnichannel/sendMessageLivechat.ts
  • apps/meteor/server/meteor-methods/platform/OEmbedCacheCleanup.ts
  • apps/meteor/server/meteor-methods/platform/banner_dismiss.ts
  • apps/meteor/server/meteor-methods/platform/checkFederationConfiguration.ts
  • apps/meteor/server/meteor-methods/platform/cloud.ts
  • apps/meteor/server/meteor-methods/platform/fetchMyKeys.ts
  • apps/meteor/server/meteor-methods/platform/getProviderUiMetadata.ts
  • apps/meteor/server/meteor-methods/platform/getStatistics.ts
  • apps/meteor/server/meteor-methods/platform/getSupportedLanguages.ts
  • apps/meteor/server/meteor-methods/platform/getUsersOfRoomWithoutKey.ts
  • apps/meteor/server/meteor-methods/platform/loadLocale.ts
  • apps/meteor/server/meteor-methods/platform/push.ts
  • apps/meteor/server/meteor-methods/platform/requestDataDownload.ts
  • apps/meteor/server/meteor-methods/platform/requestSubscriptionKeys.ts
  • apps/meteor/server/meteor-methods/platform/resetOwnE2EKey.ts
  • apps/meteor/server/meteor-methods/platform/restartServer.ts
  • apps/meteor/server/meteor-methods/platform/saveSettings.ts
  • apps/meteor/server/meteor-methods/platform/search.ts
  • apps/meteor/server/meteor-methods/platform/setRoomKeyID.ts
  • apps/meteor/server/meteor-methods/platform/setUserPublicAndPrivateKeys.ts
  • apps/meteor/server/meteor-methods/platform/translateMessage.ts
  • apps/meteor/server/meteor-methods/platform/updateGroupKey.ts
  • apps/meteor/server/meteor-methods/rooms/addAllUserToRoom.ts
  • apps/meteor/server/meteor-methods/rooms/addRoomLeader.ts
  • apps/meteor/server/meteor-methods/rooms/addRoomModerator.ts
  • apps/meteor/server/meteor-methods/rooms/addRoomOwner.ts
  • apps/meteor/server/meteor-methods/rooms/addUserToRoom.ts
  • apps/meteor/server/meteor-methods/rooms/addUsersToRoom.ts
  • apps/meteor/server/meteor-methods/rooms/archiveRoom.ts
  • apps/meteor/server/meteor-methods/rooms/browseChannels.ts
  • apps/meteor/server/meteor-methods/rooms/channelsList.ts
  • apps/meteor/server/meteor-methods/rooms/cleanRoomHistory.ts
  • apps/meteor/server/meteor-methods/rooms/createChannel.ts
  • apps/meteor/server/meteor-methods/rooms/createPrivateGroup.ts
  • apps/meteor/server/meteor-methods/rooms/getRoomById.ts
  • apps/meteor/server/meteor-methods/rooms/getRoomIdByNameOrId.ts
  • apps/meteor/server/meteor-methods/rooms/getRoomJoinCode.ts
  • apps/meteor/server/meteor-methods/rooms/getRoomNameById.ts
  • apps/meteor/server/meteor-methods/rooms/getRoomRoles.ts
  • apps/meteor/server/meteor-methods/rooms/getTotalChannels.ts
  • apps/meteor/server/meteor-methods/rooms/hideRoom.ts
  • apps/meteor/server/meteor-methods/rooms/joinDefaultChannels.ts
  • apps/meteor/server/meteor-methods/rooms/joinRoom.ts
  • apps/meteor/server/meteor-methods/rooms/leaveRoom.ts
  • apps/meteor/server/meteor-methods/rooms/muteUserInRoom.ts
  • apps/meteor/server/meteor-methods/rooms/openRoom.ts
  • apps/meteor/server/meteor-methods/rooms/removeRoomLeader.ts
  • apps/meteor/server/meteor-methods/rooms/removeRoomModerator.ts
  • apps/meteor/server/meteor-methods/rooms/removeRoomOwner.ts
  • apps/meteor/server/meteor-methods/rooms/removeUserFromRoom.ts
  • apps/meteor/server/meteor-methods/rooms/saveRoomSettings.ts
  • apps/meteor/server/meteor-methods/rooms/toggleFavorite.ts
  • apps/meteor/server/meteor-methods/rooms/unarchiveRoom.ts
  • apps/meteor/server/meteor-methods/rooms/unmuteUserInRoom.ts
  • apps/meteor/server/meteor-methods/settings/getSetupWizardParameters.ts
  • apps/meteor/server/meteor-methods/settings/saveSetting.ts
  • apps/meteor/server/meteor-methods/settings/saveSettings.ts
  • apps/meteor/server/meteor-methods/settings/sendSMTPTestEmail.ts
  • apps/meteor/server/meteor-methods/users/blockUser.ts
  • apps/meteor/server/meteor-methods/users/deleteCustomUserStatus.ts
  • apps/meteor/server/meteor-methods/users/deleteUser.ts
  • apps/meteor/server/meteor-methods/users/deleteUserOwnAccount.ts
  • apps/meteor/server/meteor-methods/users/getUserStatusText.ts
  • apps/meteor/server/meteor-methods/users/getUsernameSuggestion.ts
  • apps/meteor/server/meteor-methods/users/getUsersOfRoom.ts
  • apps/meteor/server/meteor-methods/users/ignoreUser.ts
  • apps/meteor/server/meteor-methods/users/insertOrUpdateUserStatus.ts
  • apps/meteor/server/meteor-methods/users/listCustomUserStatus.ts
  • apps/meteor/server/meteor-methods/users/registerUser.ts
  • apps/meteor/server/meteor-methods/users/resetAvatar.ts
  • apps/meteor/server/meteor-methods/users/saveNotificationSettings.ts
  • apps/meteor/server/meteor-methods/users/saveUserPreferences.ts
  • apps/meteor/server/meteor-methods/users/saveUserProfile.ts
  • apps/meteor/server/meteor-methods/users/setAvatarFromService.ts
  • apps/meteor/server/meteor-methods/users/setEmail.ts
  • apps/meteor/server/meteor-methods/users/setRealName.ts
  • apps/meteor/server/meteor-methods/users/setUserActiveStatus.ts
  • apps/meteor/server/meteor-methods/users/setUserStatus.ts
  • apps/meteor/server/meteor-methods/users/unblockUser.ts
  • apps/meteor/server/meteor-methods/users/userPresence.ts
  • apps/meteor/server/meteor-methods/users/userSetUtcOffset.ts
  • apps/meteor/server/methods/afterVerifyEmail.ts
  • apps/meteor/server/methods/deleteUser.ts
  • apps/meteor/server/methods/index.ts
  • apps/meteor/server/methods/logoutCleanUp.ts
  • apps/meteor/server/methods/removeUserFromRoom.ts
  • apps/meteor/server/methods/setUserActiveStatus.ts
  • apps/meteor/server/models.ts
  • apps/meteor/server/modules/core-apps/cloudAnnouncements.module.ts
  • apps/meteor/server/modules/core-apps/mention.module.ts
  • apps/meteor/server/modules/core-apps/nps/createModal.ts
  • apps/meteor/server/modules/listeners/listeners.module.ts
  • apps/meteor/server/modules/notifications/notifications.module.ts
  • apps/meteor/server/modules/streamer/streamer.module.ts
  • apps/meteor/server/modules/streamer/types.ts
  • apps/meteor/server/publications/messages.ts
  • apps/meteor/server/publications/room/index.ts
  • apps/meteor/server/publications/settings/index.ts
  • apps/meteor/server/publications/spotlight.ts
  • apps/meteor/server/routes/avatar/middlewares/browserVersion.spec.ts
  • apps/meteor/server/routes/avatar/middlewares/browserVersion.ts
  • apps/meteor/server/routes/avatar/room.spec.ts
  • apps/meteor/server/routes/avatar/user.spec.ts
  • apps/meteor/server/routes/avatar/user.ts
  • apps/meteor/server/routes/avatar/utils.spec.ts
  • apps/meteor/server/routes/avatar/utils.ts
  • apps/meteor/server/routes/userDataDownload.ts
  • apps/meteor/server/services/ai-search/service.ts
  • apps/meteor/server/services/authorization/canAccessRoom.ts
  • apps/meteor/server/services/authorization/service.ts
  • apps/meteor/server/services/calendar/service.ts
  • apps/meteor/server/services/federation/Settings.ts
  • apps/meteor/server/services/federation/infrastructure/rocket-chat/adapters/Statistics.ts
  • apps/meteor/server/services/federation/utils.ts
  • apps/meteor/server/services/import/service.spec.ts
  • apps/meteor/server/services/import/service.ts

You can disable this status message by setting the reviews.review_status to false in the CodeRabbit configuration file.

@cubic-dev-ai cubic-dev-ai Bot left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

19 issues found across 3000 files

Not reviewed (too large): apps/meteor/app/emoji-emojione/client/people-sprites.css (~8,729 lines) - if these are generated or fixture files, add them to ignored paths to exclude them from future reviews.

Prompt for AI agents (unresolved issues)

Check if these issues are valid — if so, understand the root cause of each and fix them. If appropriate, use sub-agents to investigate and fix each issue separately.


<file name=".changeset/persistent-audio-player.md">

<violation number="1" location=".changeset/persistent-audio-player.md:6">
P3: The release note says the Now playing card appears at the top of the sidebar, but the component is mounted after the room list and is documented as pinned to the bottom. Describing it as the bottom sidebar card would keep the generated changelog accurate.</violation>
</file>

<file name="apps/meteor/client/components/Sidebar/Header.tsx">

<violation number="1" location="apps/meteor/client/components/Sidebar/Header.tsx:15">
P2: Sidebar headers now gain an unintended 16px top padding because `paddingBlock` sets both block edges, whereas the previous `pb={16}` set only the bottom edge. Keeping the existing layout requires `paddingBottom={16}` here.</violation>
</file>

<file name=".changeset/quiet-lizards-jump.md">

<violation number="1" location=".changeset/quiet-lizards-jump.md:5">
P3: The release note names an endpoint that does not match the actual API, so users searching for `users.CreateToken` will not find this change. Naming the `createToken` DDP method (or describing the actual exposed route) keeps the release documentation actionable.</violation>
</file>

<file name="apps/meteor/client/components/TextCopy.tsx">

<violation number="1" location="apps/meteor/client/components/TextCopy.tsx:42">
P2: TextCopy now adds 16px of top padding in addition to the existing bottom spacing, which can shift the copied content and increase the component's height. `paddingBlockEnd={16}` preserves the previous `pb={16}` behavior while using the logical property form.</violation>
</file>

<file name=".changeset/license-validate-preview.md">

<violation number="1" location=".changeset/license-validate-preview.md:7">
P3: The release note incorrectly labels V2 licenses as JWTs, which can mislead clients about the token format accepted by `licenses.validate`. Describing the formats as “V2 licenses or V3 JWTs” keeps the migration/API documentation precise.</violation>
</file>

<file name="apps/meteor/client/components/UserStatusMenu.tsx">

<violation number="1" location="apps/meteor/client/components/UserStatusMenu.tsx:40">
P2: The status picker now lets every user manually select Away, reversing the existing behavior that reserved Away for automatic/server-applied presence and only exposed it to switch away from it. Keeping Away conditional on the current status preserves that workflow.</violation>
</file>

<file name="apps/meteor/.docker/Dockerfile.alpine">

<violation number="1" location="apps/meteor/.docker/Dockerfile.alpine:69">
P2: A build without `--target` now silently produces the FIPS image because this is the final stage, changing the Dockerfile's default output from standard Rocket.Chat to a licensed/FIPS-specific runtime. Keeping `release-standard` as the final stage (or otherwise preserving a standard default) would avoid breaking direct builds and consumers that do not pass the compose target.</violation>
</file>

<file name=".changeset/rest-users-setavatar-service.md">

<violation number="1" location=".changeset/rest-users-setavatar-service.md:5">
P3: Consumers of the REST typings cannot discover or type the newly documented `service` multipart field, leaving the public contract out of sync with the endpoint behavior. A dedicated multipart request type (separate from the JSON body schema) would keep the new field typed without implying that JSON `service` is accepted.

(Based on your team's feedback about keeping API typings aligned with runtime endpoints.) [FEEDBACK_USED].</violation>
</file>

<file name=".changeset/flat-poets-cheat.md">

<violation number="1" location=".changeset/flat-poets-cheat.md:14">
P2: Administrators who upgrade will not receive the documented modern OAuth behavior by default because `Accounts_OAuth_Use_Modern_Flow` defaults to `false`, yet this release note describes it as automatic and never tells them to enable the setting. The note should explicitly identify the toggle and its default/rollout behavior.</violation>
</file>

<file name="apps/meteor/client/components/TwoFactorModal/TwoFactorModal.tsx">

<violation number="1" location="apps/meteor/client/components/TwoFactorModal/TwoFactorModal.tsx:24">
P3: The email/challenge prop union is duplicated in the wrapper and `TwoFactorEmailModalProps`, so future changes can make the wrapper accept a shape that the rendered modal does not handle. Extract the shared email props into a common type and compose both component prop types from it.</violation>
</file>

<file name="apps/meteor/app/apps/server/converters/codecs/enums.ts">

<violation number="1" location="apps/meteor/app/apps/server/converters/codecs/enums.ts:26">
P3: These codecs are currently unused by the converters, so this change adds a second source of truth without changing the runtime conversion path. Wiring the converters through these shared codecs and removing the local switch helpers would prevent future enum mappings from diverging.</violation>
</file>

<file name=".changeset/breezy-parts-kiss.md">

<violation number="1" location=".changeset/breezy-parts-kiss.md:12">
P3: The release changelog will contain this OAuth feature twice because `.changeset/flat-poets-cheat.md` already documents the same change. Consolidating the notes and package bump into one changeset would avoid duplicate release documentation.</violation>

<violation number="2" location=".changeset/breezy-parts-kiss.md:19">
P2: This security claim is unconditional even though `Accounts_OAuth_Use_Modern_Flow` defaults to `false`; existing and new installations continue using the legacy flow until an administrator enables it. Qualifying this and the following security bullets with “when enabled” would keep the release notes from overstating the default behavior.</violation>
</file>

<file name="apps/meteor/app/emoji/client/lib.ts">

<violation number="1" location="apps/meteor/app/emoji/client/lib.ts:16">
P2: Initial message renders can show literal shortcodes because this fallback no longer renders anything before `useNativeEmoji` registers the native package in its layout effect. Keeping an initialization-time renderer or registering the native package before message components render would preserve first-render shortcode conversion; otherwise those messages require an unrelated rerender to update.</violation>
</file>

<file name=".changeset/fips-mode-support.md">

<violation number="1" location=".changeset/fips-mode-support.md:4">
P3: The release metadata gives `@rocket.chat/federation-matrix` a minor FIPS feature release even though it has no FIPS implementation or dedicated FIPS image and is not one of the services named in the feature description. Removing this package from the changeset would avoid an unrelated version bump and misleading package changelog entry.</violation>
</file>

<file name=".changeset/rest-batch4-logout-cleanup.md">

<violation number="1" location=".changeset/rest-batch4-logout-cleanup.md:5">
P3: The release note says `logoutCleanUp` is retained only until 9.0.0, even though this 9.0.0 release still registers the method and emits its deprecation warning. Wording that it remains available in 9.0.0 and is planned for removal in a later release would avoid misleading existing DDP clients.</violation>
</file>

<file name=".github/actions/docker-image-size-tracker/action.yml">

<violation number="1" location=".github/actions/docker-image-size-tracker/action.yml:93">
P3: The comment inaccurately says buildx produces OCI images by default; this workflow does not request OCI media types, and registry output defaults to Docker media types. Removing that claim keeps the format-compatibility rationale accurate without changing the fallback behavior.</violation>
</file>

<file name="apps/meteor/app/emoji-native/lib/generateEmojiData.ts">

<violation number="1" location="apps/meteor/app/emoji-native/lib/generateEmojiData.ts:101">
P2: Selecting an alternate shortcode for a tone-capable emoji leaves the picker’s selected skin tone unapplied because `toneList` contains only the primary name. Register every base shortcode in `codes` in `toneList` so aliases follow the same tone-selection path.</violation>
</file>

<file name=".github/workflows/ci-deploy-gh-pages.yml">

<violation number="1" location=".github/workflows/ci-deploy-gh-pages.yml:17">
P2: A compromised dependency or build/action code can use the checkout credentials to push to the repository before deployment because build and install steps share the job's `contents: write` token. Keeping build/install in a read-only job and publishing its artifact from a separate write-scoped deploy job would preserve the Pages push while limiting the elevated token.</violation>
</file>

Note: This PR contains a large number of files. cubic only reviews up to 200 files per PR, so some files may not have been reviewed. cubic prioritizes the most important files to review.

Re-trigger cubic

@@ -12,9 +12,9 @@ const Header = ({ title, onClose, children, ...props }: HeaderProps) => {
const { t } = useTranslation();

return (
<Box display='flex' flexDirection='column' pb={16} {...props}>
<Box display='flex' flexDirection='column' paddingBlock={16} {...props}>

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P2: Sidebar headers now gain an unintended 16px top padding because paddingBlock sets both block edges, whereas the previous pb={16} set only the bottom edge. Keeping the existing layout requires paddingBottom={16} here.

Prompt for AI agents
Check if this issue is valid — if so, understand the root cause and fix it. At apps/meteor/client/components/Sidebar/Header.tsx, line 15:

<comment>Sidebar headers now gain an unintended 16px top padding because `paddingBlock` sets both block edges, whereas the previous `pb={16}` set only the bottom edge. Keeping the existing layout requires `paddingBottom={16}` here.</comment>

<file context>
@@ -12,9 +12,9 @@ const Header = ({ title, onClose, children, ...props }: HeaderProps) => {
 
 	return (
-		<Box display='flex' flexDirection='column' pb={16} {...props}>
+		<Box display='flex' flexDirection='column' paddingBlock={16} {...props}>
 			{(title || onClose) && (
-				<Box display='flex' flexDirection='row' alignItems='center' pi={24} justifyContent='space-between' flexGrow={1}>
</file context>
Suggested change
<Box display='flex' flexDirection='column' paddingBlock={16} {...props}>
<Box display='flex' flexDirection='column' paddingBottom={16} {...props}>

@@ -31,7 +39,7 @@ const TextCopy = ({ text, wrapper = defaultWrapperRenderer, ...props }: TextCopy
justifyContent='stretch'
alignItems='flex-start'
flexGrow={1}
pb={16}
paddingBlock={16}

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P2: TextCopy now adds 16px of top padding in addition to the existing bottom spacing, which can shift the copied content and increase the component's height. paddingBlockEnd={16} preserves the previous pb={16} behavior while using the logical property form.

Prompt for AI agents
Check if this issue is valid — if so, understand the root cause and fix it. At apps/meteor/client/components/TextCopy.tsx, line 42:

<comment>TextCopy now adds 16px of top padding in addition to the existing bottom spacing, which can shift the copied content and increase the component's height. `paddingBlockEnd={16}` preserves the previous `pb={16}` behavior while using the logical property form.</comment>

<file context>
@@ -31,7 +39,7 @@ const TextCopy = ({ text, wrapper = defaultWrapperRenderer, ...props }: TextCopy
 			alignItems='flex-start'
 			flexGrow={1}
-			pb={16}
+			paddingBlock={16}
 			backgroundColor='surface'
 			width='full'
</file context>
Suggested change
paddingBlock={16}
paddingBlockEnd={16}

@@ -37,21 +37,16 @@ const UserStatusMenu = ({

const statuses: Array<[value: UserStatusType, label: ReactNode]> = [
[UserStatusType.ONLINE, renderOption(UserStatusType.ONLINE, t('Online'))],
[UserStatusType.AWAY, renderOption(UserStatusType.AWAY, t('Away'))],

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P2: The status picker now lets every user manually select Away, reversing the existing behavior that reserved Away for automatic/server-applied presence and only exposed it to switch away from it. Keeping Away conditional on the current status preserves that workflow.

Prompt for AI agents
Check if this issue is valid — if so, understand the root cause and fix it. At apps/meteor/client/components/UserStatusMenu.tsx, line 40:

<comment>The status picker now lets every user manually select Away, reversing the existing behavior that reserved Away for automatic/server-applied presence and only exposed it to switch away from it. Keeping Away conditional on the current status preserves that workflow.</comment>

<file context>
@@ -37,21 +37,16 @@ const UserStatusMenu = ({
 
 		const statuses: Array<[value: UserStatusType, label: ReactNode]> = [
 			[UserStatusType.ONLINE, renderOption(UserStatusType.ONLINE, t('Online'))],
+			[UserStatusType.AWAY, renderOption(UserStatusType.AWAY, t('Away'))],
 			[UserStatusType.BUSY, renderOption(UserStatusType.BUSY, t('Busy'))],
 		];
</file context>


CMD ["node", "main.js"]

FROM rocketchat/dhi-node:22.22.3-alpine3.23-fips AS release-fips

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P2: A build without --target now silently produces the FIPS image because this is the final stage, changing the Dockerfile's default output from standard Rocket.Chat to a licensed/FIPS-specific runtime. Keeping release-standard as the final stage (or otherwise preserving a standard default) would avoid breaking direct builds and consumers that do not pass the compose target.

Prompt for AI agents
Check if this issue is valid — if so, understand the root cause and fix it. At apps/meteor/.docker/Dockerfile.alpine, line 69:

<comment>A build without `--target` now silently produces the FIPS image because this is the final stage, changing the Dockerfile's default output from standard Rocket.Chat to a licensed/FIPS-specific runtime. Keeping `release-standard` as the final stage (or otherwise preserving a standard default) would avoid breaking direct builds and consumers that do not pass the compose target.</comment>

<file context>
@@ -65,3 +65,29 @@ WORKDIR /app/bundle
 
 CMD ["node", "main.js"]
+
+FROM rocketchat/dhi-node:22.22.3-alpine3.23-fips AS release-fips
+
+LABEL maintainer="buildmaster@rocket.chat"
</file context>


## Phishing-Resistant Multi-Factor Authentication

Introduces a more secure and reliable server-side OAuth authentication flow.

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P2: Administrators who upgrade will not receive the documented modern OAuth behavior by default because Accounts_OAuth_Use_Modern_Flow defaults to false, yet this release note describes it as automatic and never tells them to enable the setting. The note should explicitly identify the toggle and its default/rollout behavior.

Prompt for AI agents
Check if this issue is valid — if so, understand the root cause and fix it. At .changeset/flat-poets-cheat.md, line 14:

<comment>Administrators who upgrade will not receive the documented modern OAuth behavior by default because `Accounts_OAuth_Use_Modern_Flow` defaults to `false`, yet this release note describes it as automatic and never tells them to enable the setting. The note should explicitly identify the toggle and its default/rollout behavior.</comment>

<file context>
@@ -0,0 +1,28 @@
+
+## Phishing-Resistant Multi-Factor Authentication
+
+Introduces a more secure and reliable server-side OAuth authentication flow.
+
+### What’s New
</file context>

* Rocket.Chat `IUser['type']` <-> Apps-Engine `UserType`.
* Mirrors `AppUsersConverter._convertUserTypeToEnum`.
*/
export const UserTypeCodec = z.codec(z.string().optional(), z.string(), {

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P3: These codecs are currently unused by the converters, so this change adds a second source of truth without changing the runtime conversion path. Wiring the converters through these shared codecs and removing the local switch helpers would prevent future enum mappings from diverging.

Prompt for AI agents
Check if this issue is valid — if so, understand the root cause and fix it. At apps/meteor/app/apps/server/converters/codecs/enums.ts, line 26:

<comment>These codecs are currently unused by the converters, so this change adds a second source of truth without changing the runtime conversion path. Wiring the converters through these shared codecs and removing the local switch helpers would prevent future enum mappings from diverging.</comment>

<file context>
@@ -0,0 +1,124 @@
+ * Rocket.Chat `IUser['type']` <-> Apps-Engine `UserType`.
+ * Mirrors `AppUsersConverter._convertUserTypeToEnum`.
+ */
+export const UserTypeCodec = z.codec(z.string().optional(), z.string(), {
+	decode: (type): string => {
+		switch (type) {
</file context>

'@rocket.chat/meteor': major
---

## Phishing-Resistant Multi-Factor Authentication

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P3: The release changelog will contain this OAuth feature twice because .changeset/flat-poets-cheat.md already documents the same change. Consolidating the notes and package bump into one changeset would avoid duplicate release documentation.

Prompt for AI agents
Check if this issue is valid — if so, understand the root cause and fix it. At .changeset/breezy-parts-kiss.md, line 12:

<comment>The release changelog will contain this OAuth feature twice because `.changeset/flat-poets-cheat.md` already documents the same change. Consolidating the notes and package bump into one changeset would avoid duplicate release documentation.</comment>

<file context>
@@ -0,0 +1,31 @@
+'@rocket.chat/meteor': major
+---
+
+## Phishing-Resistant Multi-Factor Authentication
+
+Introduces a more secure and reliable server-side OAuth authentication flow.
</file context>

---
'@rocket.chat/meteor': minor
'@rocket.chat/core-typings': minor
'@rocket.chat/federation-matrix': minor

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P3: The release metadata gives @rocket.chat/federation-matrix a minor FIPS feature release even though it has no FIPS implementation or dedicated FIPS image and is not one of the services named in the feature description. Removing this package from the changeset would avoid an unrelated version bump and misleading package changelog entry.

Prompt for AI agents
Check if this issue is valid — if so, understand the root cause and fix it. At .changeset/fips-mode-support.md, line 4:

<comment>The release metadata gives `@rocket.chat/federation-matrix` a minor FIPS feature release even though it has no FIPS implementation or dedicated FIPS image and is not one of the services named in the feature description. Removing this package from the changeset would avoid an unrelated version bump and misleading package changelog entry.</comment>

<file context>
@@ -0,0 +1,13 @@
+---
+'@rocket.chat/meteor': minor
+'@rocket.chat/core-typings': minor
+'@rocket.chat/federation-matrix': minor
+'@rocket.chat/account-service': minor
+'@rocket.chat/authorization-service': minor
</file context>

'@rocket.chat/meteor': minor
---

Deprecates the `logoutCleanUp` DDP method and stops the client from calling it. The post-logout side effects (`afterLogoutCleanUpCallback` + `Apps.IPostUserLoggedOut`) now run server-side via a new `Accounts.onLogout` handler and from `POST /v1/users.logout`, so both DDP and REST logout paths fire them without a client round-trip. The DDP method keeps its original implementation and registration with a deprecation log pointing at `/v1/users.logout` until 9.0.0.

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P3: The release note says logoutCleanUp is retained only until 9.0.0, even though this 9.0.0 release still registers the method and emits its deprecation warning. Wording that it remains available in 9.0.0 and is planned for removal in a later release would avoid misleading existing DDP clients.

Prompt for AI agents
Check if this issue is valid — if so, understand the root cause and fix it. At .changeset/rest-batch4-logout-cleanup.md, line 5:

<comment>The release note says `logoutCleanUp` is retained only until 9.0.0, even though this 9.0.0 release still registers the method and emits its deprecation warning. Wording that it remains available in 9.0.0 and is planned for removal in a later release would avoid misleading existing DDP clients.</comment>

<file context>
@@ -0,0 +1,5 @@
+'@rocket.chat/meteor': minor
+---
+
+Deprecates the `logoutCleanUp` DDP method and stops the client from calling it. The post-logout side effects (`afterLogoutCleanUpCallback` + `Apps.IPostUserLoggedOut`) now run server-side via a new `Accounts.onLogout` handler and from `POST /v1/users.logout`, so both DDP and REST logout paths fire them without a client round-trip. The DDP method keeps its original implementation and registration with a deprecation log pointing at `/v1/users.logout` until 9.0.0.
</file context>

Comment on lines +93 to +94
# (Docker schema2 images) or OCIManifest (OCI images, which buildx
# produces by default). Coalesce so both formats are read.

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P3: The comment inaccurately says buildx produces OCI images by default; this workflow does not request OCI media types, and registry output defaults to Docker media types. Removing that claim keeps the format-compatibility rationale accurate without changing the fallback behavior.

Prompt for AI agents
Check if this issue is valid — if so, understand the root cause and fix it. At .github/actions/docker-image-size-tracker/action.yml, line 93:

<comment>The comment inaccurately says buildx produces OCI images by default; this workflow does not request OCI media types, and registry output defaults to Docker media types. Removing that claim keeps the format-compatibility rationale accurate without changing the fallback behavior.</comment>

<file context>
@@ -89,10 +89,11 @@ runs:
-            config_size=$(jq -r '.SchemaV2Manifest.config.size // 0' "$manifest_file")
-            layers_size=$(jq '[.SchemaV2Manifest.layers[]?.size // 0] | add // 0' "$manifest_file")
+            # docker manifest inspect -v puts the manifest under SchemaV2Manifest
+            # (Docker schema2 images) or OCIManifest (OCI images, which buildx
+            # produces by default). Coalesce so both formats are read.
+            config_size=$(jq -r '(.SchemaV2Manifest // .OCIManifest).config.size // 0' "$manifest_file")
</file context>
Suggested change
# (Docker schema2 images) or OCIManifest (OCI images, which buildx
# produces by default). Coalesce so both formats are read.
# (Docker schema2 images) or OCIManifest (OCI images). Coalesce
# so both formats are read.

@rc-layne

rc-layne Bot commented Jul 20, 2026

Copy link
Copy Markdown

Warning

These are security findings reported by the security scanners configured in Layne. Findings may contain false positives - review them and fix what makes sense.

Layne found 55 high issues in this PR.

View 55 finding(s)
Severity Scanner File Rule Description
🟠 High semgrep apps/meteor/ee/server/api/v1/omnichannel/lib/triggers.ts:23 app.config.semgrep.rules.rocketchat.ssrf-validation-bypass-without-justification SSRF validation is disabled. Ensure the URL is not user-controlled or is restricted to a known-safe allowlist.
🟠 High semgrep apps/meteor/server/api/v1/omnichannel/webhooks.ts:68 app.config.semgrep.rules.rocketchat.ssrf-validation-bypass-without-justification SSRF validation is disabled. Ensure the URL is not user-controlled or is restricted to a known-safe allowlist.
🟠 High semgrep apps/meteor/server/bridges/slack/SlackAPI.ts:16 app.config.semgrep.rules.rocketchat.ssrf-validation-bypass-without-justification SSRF validation is disabled. Ensure the URL is not user-controlled or is restricted to a known-safe allowlist.
🟠 High semgrep apps/meteor/server/bridges/slack/SlackAPI.ts:44 app.config.semgrep.rules.rocketchat.ssrf-validation-bypass-without-justification SSRF validation is disabled. Ensure the URL is not user-controlled or is restricted to a known-safe allowlist.
🟠 High semgrep apps/meteor/server/bridges/slack/SlackAPI.ts:71 app.config.semgrep.rules.rocketchat.ssrf-validation-bypass-without-justification SSRF validation is disabled. Ensure the URL is not user-controlled or is restricted to a known-safe allowlist.
🟠 High semgrep apps/meteor/server/bridges/slack/SlackAPI.ts:92 app.config.semgrep.rules.rocketchat.ssrf-validation-bypass-without-justification SSRF validation is disabled. Ensure the URL is not user-controlled or is restricted to a known-safe allowlist.
🟠 High semgrep apps/meteor/server/bridges/slack/SlackAPI.ts:117 app.config.semgrep.rules.rocketchat.ssrf-validation-bypass-without-justification SSRF validation is disabled. Ensure the URL is not user-controlled or is restricted to a known-safe allowlist.
🟠 High semgrep apps/meteor/server/bridges/slack/SlackAPI.ts:131 app.config.semgrep.rules.rocketchat.ssrf-validation-bypass-without-justification SSRF validation is disabled. Ensure the URL is not user-controlled or is restricted to a known-safe allowlist.
🟠 High semgrep apps/meteor/server/bridges/slack/SlackAPI.ts:145 app.config.semgrep.rules.rocketchat.ssrf-validation-bypass-without-justification SSRF validation is disabled. Ensure the URL is not user-controlled or is restricted to a known-safe allowlist.
🟠 High semgrep apps/meteor/server/bridges/slack/SlackAPI.ts:159 app.config.semgrep.rules.rocketchat.ssrf-validation-bypass-without-justification SSRF validation is disabled. Ensure the URL is not user-controlled or is restricted to a known-safe allowlist.
🟠 High semgrep apps/meteor/server/bridges/slack/SlackAPI.ts:172 app.config.semgrep.rules.rocketchat.ssrf-validation-bypass-without-justification SSRF validation is disabled. Ensure the URL is not user-controlled or is restricted to a known-safe allowlist.
🟠 High semgrep apps/meteor/server/bridges/slack/SlackAPI.ts:186 app.config.semgrep.rules.rocketchat.ssrf-validation-bypass-without-justification SSRF validation is disabled. Ensure the URL is not user-controlled or is restricted to a known-safe allowlist.
🟠 High semgrep apps/meteor/server/bridges/slack/SlackAPI.ts:199 app.config.semgrep.rules.rocketchat.ssrf-validation-bypass-without-justification SSRF validation is disabled. Ensure the URL is not user-controlled or is restricted to a known-safe allowlist.
🟠 High semgrep apps/meteor/server/bridges/slack/SlackAPI.ts:214 app.config.semgrep.rules.rocketchat.ssrf-validation-bypass-without-justification SSRF validation is disabled. Ensure the URL is not user-controlled or is restricted to a known-safe allowlist.
🟠 High semgrep apps/meteor/server/bridges/slack/SlackAPI.ts:229 app.config.semgrep.rules.rocketchat.ssrf-validation-bypass-without-justification SSRF validation is disabled. Ensure the URL is not user-controlled or is restricted to a known-safe allowlist.
🟠 High semgrep apps/meteor/server/bridges/slack/SlackAPI.ts:242 app.config.semgrep.rules.rocketchat.ssrf-validation-bypass-without-justification SSRF validation is disabled. Ensure the URL is not user-controlled or is restricted to a known-safe allowlist.
🟠 High semgrep apps/meteor/server/lib/auth-providers/apple/handleIdentityToken.ts:42 app.config.semgrep.rules.rocketchat.ssrf-validation-bypass-without-justification SSRF validation is disabled. Ensure the URL is not user-controlled or is restricted to a known-safe allowlist.
🟠 High semgrep apps/meteor/server/lib/auth-providers/custom-oauth/custom_oauth_server.js:149 app.config.semgrep.rules.rocketchat.ssrf-validation-bypass-without-justification SSRF validation is disabled. Ensure the URL is not user-controlled or is restricted to a known-safe allowlist.
🟠 High semgrep apps/meteor/server/lib/auth-providers/custom-oauth/custom_oauth_server.js:188 app.config.semgrep.rules.rocketchat.ssrf-validation-bypass-without-justification SSRF validation is disabled. Ensure the URL is not user-controlled or is restricted to a known-safe allowlist.
🟠 High semgrep apps/meteor/server/lib/auth-providers/custom-oauth/custom_oauth_server.js:295 app.config.semgrep.rules.rocketchat.ssrf-validation-bypass-without-justification SSRF validation is disabled. Ensure the URL is not user-controlled or is restricted to a known-safe allowlist.
🟠 High semgrep apps/meteor/server/lib/autotranslate/deeplTranslate.ts:106 app.config.semgrep.rules.rocketchat.ssrf-validation-bypass-without-justification SSRF validation is disabled. Ensure the URL is not user-controlled or is restricted to a known-safe allowlist.
🟠 High semgrep apps/meteor/server/lib/autotranslate/deeplTranslate.ts:147 app.config.semgrep.rules.rocketchat.ssrf-validation-bypass-without-justification SSRF validation is disabled. Ensure the URL is not user-controlled or is restricted to a known-safe allowlist.
🟠 High semgrep apps/meteor/server/lib/autotranslate/deeplTranslate.ts:195 app.config.semgrep.rules.rocketchat.ssrf-validation-bypass-without-justification SSRF validation is disabled. Ensure the URL is not user-controlled or is restricted to a known-safe allowlist.
🟠 High semgrep apps/meteor/server/lib/autotranslate/googleTranslate.ts:93 app.config.semgrep.rules.rocketchat.ssrf-validation-bypass-without-justification SSRF validation is disabled. Ensure the URL is not user-controlled or is restricted to a known-safe allowlist.
🟠 High semgrep apps/meteor/server/lib/autotranslate/googleTranslate.ts:109 app.config.semgrep.rules.rocketchat.ssrf-validation-bypass-without-justification SSRF validation is disabled. Ensure the URL is not user-controlled or is restricted to a known-safe allowlist.
🟠 High semgrep apps/meteor/server/lib/autotranslate/googleTranslate.ts:145 app.config.semgrep.rules.rocketchat.ssrf-validation-bypass-without-justification SSRF validation is disabled. Ensure the URL is not user-controlled or is restricted to a known-safe allowlist.
🟠 High semgrep apps/meteor/server/lib/autotranslate/googleTranslate.ts:193 app.config.semgrep.rules.rocketchat.ssrf-validation-bypass-without-justification SSRF validation is disabled. Ensure the URL is not user-controlled or is restricted to a known-safe allowlist.
🟠 High semgrep apps/meteor/server/lib/autotranslate/libreTranslate.ts:78 app.config.semgrep.rules.rocketchat.ssrf-validation-bypass-without-justification SSRF validation is disabled. Ensure the URL is not user-controlled or is restricted to a known-safe allowlist.
🟠 High semgrep apps/meteor/server/lib/autotranslate/libreTranslate.ts:118 app.config.semgrep.rules.rocketchat.ssrf-validation-bypass-without-justification SSRF validation is disabled. Ensure the URL is not user-controlled or is restricted to a known-safe allowlist.
🟠 High semgrep apps/meteor/server/lib/autotranslate/msTranslate.ts:92 app.config.semgrep.rules.rocketchat.ssrf-validation-bypass-without-justification SSRF validation is disabled. Ensure the URL is not user-controlled or is restricted to a known-safe allowlist.
🟠 High semgrep apps/meteor/server/lib/autotranslate/msTranslate.ts:129 app.config.semgrep.rules.rocketchat.ssrf-validation-bypass-without-justification SSRF validation is disabled. Ensure the URL is not user-controlled or is restricted to a known-safe allowlist.
🟠 High semgrep apps/meteor/server/lib/cloud/connectWorkspace.ts:29 app.config.semgrep.rules.rocketchat.ssrf-validation-bypass-without-justification SSRF validation is disabled. Ensure the URL is not user-controlled or is restricted to a known-safe allowlist.
🟠 High semgrep apps/meteor/server/lib/cloud/finishOAuthAuthorization.ts:40 app.config.semgrep.rules.rocketchat.ssrf-validation-bypass-without-justification SSRF validation is disabled. Ensure the URL is not user-controlled or is restricted to a known-safe allowlist.
🟠 High semgrep apps/meteor/server/lib/cloud/getCheckoutUrl.ts:37 app.config.semgrep.rules.rocketchat.ssrf-validation-bypass-without-justification SSRF validation is disabled. Ensure the URL is not user-controlled or is restricted to a known-safe allowlist.
🟠 High semgrep apps/meteor/server/lib/cloud/getConfirmationPoll.ts:16 app.config.semgrep.rules.rocketchat.ssrf-validation-bypass-without-justification SSRF validation is disabled. Ensure the URL is not user-controlled or is restricted to a known-safe allowlist.
🟠 High semgrep apps/meteor/server/lib/cloud/getWorkspaceAccessTokenWithScope.ts:68 app.config.semgrep.rules.rocketchat.ssrf-validation-bypass-without-justification SSRF validation is disabled. Ensure the URL is not user-controlled or is restricted to a known-safe allowlist.
🟠 High semgrep apps/meteor/server/lib/cloud/getWorkspaceLicense.ts:24 app.config.semgrep.rules.rocketchat.ssrf-validation-bypass-without-justification SSRF validation is disabled. Ensure the URL is not user-controlled or is restricted to a known-safe allowlist.
🟠 High semgrep apps/meteor/server/lib/cloud/registerPreIntentWorkspaceWizard.ts:37 app.config.semgrep.rules.rocketchat.ssrf-validation-bypass-without-justification SSRF validation is disabled. Ensure the URL is not user-controlled or is restricted to a known-safe allowlist.
🟠 High semgrep apps/meteor/server/lib/cloud/removeLicense.ts:30 app.config.semgrep.rules.rocketchat.ssrf-validation-bypass-without-justification SSRF validation is disabled. Ensure the URL is not user-controlled or is restricted to a known-safe allowlist.
🟠 High semgrep apps/meteor/server/lib/cloud/startRegisterWorkspace.ts:36 app.config.semgrep.rules.rocketchat.ssrf-validation-bypass-without-justification SSRF validation is disabled. Ensure the URL is not user-controlled or is restricted to a known-safe allowlist.
🟠 High semgrep apps/meteor/server/lib/cloud/startRegisterWorkspaceSetupWizard.ts:24 app.config.semgrep.rules.rocketchat.ssrf-validation-bypass-without-justification SSRF validation is disabled. Ensure the URL is not user-controlled or is restricted to a known-safe allowlist.
🟠 High semgrep apps/meteor/server/lib/cloud/supportedVersionsToken/supportedVersionsToken.ts:128 app.config.semgrep.rules.rocketchat.ssrf-validation-bypass-without-justification SSRF validation is disabled. Ensure the URL is not user-controlled or is restricted to a known-safe allowlist.
🟠 High semgrep apps/meteor/server/lib/cloud/syncWorkspace/announcementSync.ts:29 app.config.semgrep.rules.rocketchat.ssrf-validation-bypass-without-justification SSRF validation is disabled. Ensure the URL is not user-controlled or is restricted to a known-safe allowlist.
🟠 High semgrep apps/meteor/server/lib/cloud/syncWorkspace/fetchWorkspaceSyncPayload.ts:23 app.config.semgrep.rules.rocketchat.ssrf-validation-bypass-without-justification SSRF validation is disabled. Ensure the URL is not user-controlled or is restricted to a known-safe allowlist.
🟠 High semgrep apps/meteor/server/lib/cloud/syncWorkspace/legacySyncWorkspace.ts:34 app.config.semgrep.rules.rocketchat.ssrf-validation-bypass-without-justification SSRF validation is disabled. Ensure the URL is not user-controlled or is restricted to a known-safe allowlist.
🟠 High semgrep apps/meteor/server/lib/cloud/userLogout.ts:51 app.config.semgrep.rules.rocketchat.ssrf-validation-bypass-without-justification SSRF validation is disabled. Ensure the URL is not user-controlled or is restricted to a known-safe allowlist.
🟠 High semgrep apps/meteor/server/lib/cloud/version-check/functions/getNewUpdates.ts:42 app.config.semgrep.rules.rocketchat.ssrf-validation-bypass-without-justification SSRF validation is disabled. Ensure the URL is not user-controlled or is restricted to a known-safe allowlist.
🟠 High semgrep apps/meteor/server/lib/integrations/lib/isolated-vm/buildSandbox.ts:124 app.config.semgrep.rules.rocketchat.ssrf-validation-bypass-without-justification SSRF validation is disabled. Ensure the URL is not user-controlled or is restricted to a known-safe allowlist.
🟠 High semgrep apps/meteor/server/lib/integrations/lib/triggerHandler.ts:622 app.config.semgrep.rules.rocketchat.ssrf-validation-bypass-without-justification SSRF validation is disabled. Ensure the URL is not user-controlled or is restricted to a known-safe allowlist.
🟠 High semgrep apps/meteor/server/lib/notifications/push/fcm.ts:196 app.config.semgrep.rules.rocketchat.ssrf-validation-bypass-without-justification SSRF validation is disabled. Ensure the URL is not user-controlled or is restricted to a known-safe allowlist.
🟠 High semgrep apps/meteor/server/lib/notifications/push/push.ts:276 app.config.semgrep.rules.rocketchat.ssrf-validation-bypass-without-justification SSRF validation is disabled. Ensure the URL is not user-controlled or is restricted to a known-safe allowlist.
🟠 High semgrep apps/meteor/server/lib/omnichannel/routing/External.ts:55 app.config.semgrep.rules.rocketchat.ssrf-validation-bypass-without-justification SSRF validation is disabled. Ensure the URL is not user-controlled or is restricted to a known-safe allowlist.
🟠 High semgrep apps/meteor/server/lib/omnichannel/webhooks.ts:31 app.config.semgrep.rules.rocketchat.ssrf-validation-bypass-without-justification SSRF validation is disabled. Ensure the URL is not user-controlled or is restricted to a known-safe allowlist.
🟠 High semgrep apps/meteor/server/lib/statistics/functions/sendUsageReport.ts:27 app.config.semgrep.rules.rocketchat.ssrf-validation-bypass-without-justification SSRF validation is disabled. Ensure the URL is not user-controlled or is restricted to a known-safe allowlist.
🟠 High semgrep packages/apps/src/server/runtime/base/BaseRuntimeSubprocessController.ts:175 app.config.semgrep.rules.nodejs.child-process-execution Child process execution detected. Ensure command and arguments are not user-controlled. Command injection (CWE-78) can occur if untrusted input flows into spawn/exec calls. Remediation: - Use allowlists for permitted commands - Validate/sanitize all arguments - Avoid shell=True or string-based command interpolation - Prefer execFile/spawn over exec when possible

@julio-rocketchat

Copy link
Copy Markdown
Member

/layne exception-approve LAYNE-444e666a3d283215 LAYNE-fc2d8685a58d12d2 LAYNE-40ff54ded49388a9 LAYNE-a03618bb043d0e60 LAYNE-dfa1044ca4ac93d5 LAYNE-c84a1219c89a6a64 LAYNE-a24dde934c022920 LAYNE-740fe4661e9634ba LAYNE-e2e5abcf124ff915 LAYNE-f3a64acc0efe0d91 LAYNE-fe41fedccfb015a4 LAYNE-3e3b9c3235001f53 LAYNE-f737280aba6ebe45 LAYNE-4140dbe675a2f1a4 LAYNE-13eea44db3398875 LAYNE-b63865b6b5ce7c50 LAYNE-c484ac3ad4cf7514 LAYNE-5a13936919dad058 LAYNE-84d7364adeee3d85 LAYNE-14e367de73edcde8 LAYNE-45ef8cbc41cf0f65 LAYNE-22ffed8aad3ff424 LAYNE-a363aed39ea1fe50 LAYNE-7e20d9442a92740e LAYNE-de17d056e706b841 LAYNE-49a3fa7533badf61 LAYNE-2194889a8f6bfdab LAYNE-58bb578d6497aee1 LAYNE-7c448084f867baef LAYNE-257efa562f27dfb6 LAYNE-b84b55f3df673449 LAYNE-c1c4401016d00b3b LAYNE-d5a4427cd246fc91 LAYNE-c114d92fccc1721e LAYNE-3d7af531e2a486a5 LAYNE-9c7ba427b03c9d2f LAYNE-4d598ee1db533da0 LAYNE-5c760bf9cf0de4d2 LAYNE-debbb9781ec393a3 LAYNE-07ff5e7849435682 LAYNE-8831529b741184d5 LAYNE-80c29a759dc0ee6f LAYNE-9e09b2b054fe7c36 LAYNE-b9d2d7a44470ef8d LAYNE-4d5b6e6b5881af9f LAYNE-ad1ecf91305f592b LAYNE-63078a757671eeae LAYNE-a6429ee3b1213c27 LAYNE-9d1345e5bb20ccbd LAYNE-c1376c993f2f8f95 LAYNE-4b8784e52878e3e4 LAYNE-944e1730c7bf21dc LAYNE-233b583b79a28c1c LAYNE-3fd08e4cf86d1629 LAYNE-916cd0d36de29205 reason: false positives

@rc-layne

rc-layne Bot commented Jul 20, 2026

Copy link
Copy Markdown

✅ Exception recorded for LAYNE-444e666a3d283215, LAYNE-fc2d8685a58d12d2, LAYNE-40ff54ded49388a9, LAYNE-a03618bb043d0e60, LAYNE-dfa1044ca4ac93d5, LAYNE-c84a1219c89a6a64, LAYNE-a24dde934c022920, LAYNE-740fe4661e9634ba, LAYNE-e2e5abcf124ff915, LAYNE-f3a64acc0efe0d91, LAYNE-fe41fedccfb015a4, LAYNE-3e3b9c3235001f53, LAYNE-f737280aba6ebe45, LAYNE-4140dbe675a2f1a4, LAYNE-13eea44db3398875, LAYNE-b63865b6b5ce7c50, LAYNE-c484ac3ad4cf7514, LAYNE-5a13936919dad058, LAYNE-84d7364adeee3d85, LAYNE-14e367de73edcde8, LAYNE-45ef8cbc41cf0f65, LAYNE-22ffed8aad3ff424, LAYNE-a363aed39ea1fe50, LAYNE-7e20d9442a92740e, LAYNE-de17d056e706b841, LAYNE-49a3fa7533badf61, LAYNE-2194889a8f6bfdab, LAYNE-58bb578d6497aee1, LAYNE-7c448084f867baef, LAYNE-257efa562f27dfb6, LAYNE-b84b55f3df673449, LAYNE-c1c4401016d00b3b, LAYNE-d5a4427cd246fc91, LAYNE-c114d92fccc1721e, LAYNE-3d7af531e2a486a5, LAYNE-9c7ba427b03c9d2f, LAYNE-4d598ee1db533da0, LAYNE-5c760bf9cf0de4d2, LAYNE-debbb9781ec393a3, LAYNE-07ff5e7849435682, LAYNE-8831529b741184d5, LAYNE-80c29a759dc0ee6f, LAYNE-9e09b2b054fe7c36, LAYNE-b9d2d7a44470ef8d, LAYNE-4d5b6e6b5881af9f, LAYNE-ad1ecf91305f592b, LAYNE-63078a757671eeae, LAYNE-a6429ee3b1213c27, LAYNE-9d1345e5bb20ccbd, LAYNE-c1376c993f2f8f95, LAYNE-4b8784e52878e3e4, LAYNE-944e1730c7bf21dc, LAYNE-233b583b79a28c1c, LAYNE-3fd08e4cf86d1629, LAYNE-916cd0d36de29205 by @julio-rocketchat: "false positives". Re-running scan...

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.